/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: #f2f2f2;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: #41004f;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* Product Section */
.product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.product img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.product-details {
    max-width: 600px;
    text-align: center;
}

.product h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

.product p {
    font-size: 1.2em;
    text-align: justify;
    margin-bottom: 30px;
    color: #666;
}

/* Pricing Cards */
.prices {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.price-card {
    border: 1px solid #ddd;
    padding: 1em;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin: 10px;
}

.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card h2 {
    font-size: 2.5em;
    color: #41004f;
    margin: 0;
}

.price-card .old-price {
    text-decoration: line-through;
    color: #f54242;
    margin-right: 5px;
    font-size: 0.6em;
}

.price-card p {
    font-size: 1em;
    color: #666;
    margin: 10px 0 20px 0;
}

.price-card button {
    background: #e60000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    font-size: 1em;
}

.price-card button:hover {
    background: #d00000;
}

/* Footer */
.footer {
    background: #41004f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer img {
    max-width: 550px;
    margin: 10px;
    width: 100%;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
}

.footer-links button {
    cursor: pointer;
    background-color: white;
    color: #41004f;
    border: none;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s;
}

.footer-links button:hover {
    background-color: #5dff05;
}

.footer img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.paypal-logo {
    filter: brightness(1) invert(0);
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .product {
        flex-direction: column;
    }

    .prices {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
    }

    .footer img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .footer img {
        max-width: 250px;
    }

    .paypal-logo {
        max-width: 250px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        color: #FFFFFF;
    }

    .footer-links a:hover {
        color: #FFFFFF;
    }
}
.channel-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center; /* Center the logos horizontally */
    margin-top: 20px;
}

.channel-logos img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.channel-logos img:hover {
    transform: scale(1.1);
}
