.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    margin:0px auto;
}

.card {
    width: 48%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}

.card:nth-child(odd) {
    margin-right: 0;
}

.cardHeading {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom:10px;
}

.cardContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}





.video-card {
    width: 100%;
    padding: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
}


  /* For mobile devices */
    @media (max-width: 768px) {
        .video-card {
            width: calc(100% - 20px); /* Full width for video card with gap */
        }

        .video-container {
            padding-bottom: 100%; /* Change aspect ratio for mobile */
        }
    }



.product {
    display: flex;
    flex-direction: column;
/*    align-items: center;*/
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product p {
    margin-top: 5px;
    font-size: 14px;
    text-align: left !important;
     color: black;
}

a {
    display: block;
    text-align: left;
    margin-top: 10px;
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}


/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%; /* Adjust width to fit the viewport */
        margin-bottom: 20px; /* Add margin between cards */
    }

  
