/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    background-color: #ffff00;
    padding: 2px 5px;
    font-weight: bold;
}

.button {
    display: inline-block;
    background-color: #f7b731;
    color: #000;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #333;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #f5a623;
}

h1,
h2,
h3 {
    font-weight: bold;
}

/* Top Bar */
.top-bar {
    background-color: #c00;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 40px 20px;
}

.hero h1 {
    font-size: 28px;
}

.hero-features {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

.features-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.features-list li::before {
    content: '✔';
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

/* Price Section */
.price-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.price-section h2 {
    font-size: 24px;
}

.price {
    font-size: 50px;
    font-weight: bold;
    color: #28a745;
}

.original-price {
    font-size: 30px;
    color: #c00;
    text-decoration: line-through;
}

.price-benefits {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.price-benefits li {
    margin-bottom: 10px;
}

.promo-alert {
    background-color: #17a2b8;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    display: inline-block;
}

/* Video Section */
.video-section {
    background-color: #00b000;
    padding: 40px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 30px;
}

.video-container {
    flex: 1;
}

.video-container video,
.video-container img {
    max-width: 100%;
    border: 3px solid white;
}

.video-text {
    flex: 1;
}

.video-text h2 {
    font-size: 24px;
}

/* Offer Details Section */
.offer-details {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.offer-title {
    font-size: 24px;
    font-weight: bold;
}

.offer-price-tag {
    background-color: #ffff00;
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.offer-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.offer-list .strikethrough {
    text-decoration: line-through;
    color: red;
}

.free-gift {
    color: green;
    font-weight: bold;
}

.warning-bar {
    background-color: #c00;
    color: white;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Form Section */
.form-section {
    background-color: #e9ecef;
    padding: 40px 20px;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-container .button {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
}

/* Product Info Section */
.product-info {
    background-color: #008080;
    color: white;
    padding: 40px 20px;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-info-col h3 {
    border-bottom: 2px solid #ffff00;
    padding-bottom: 5px;
}

/* Reviews Section */
.reviews-section {
    background-color: #fef9e7;
    padding: 40px 20px;
}

.reviews-header {
    font-size: 32px;
    font-weight: bold;
}

.reviews-summary {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-bar .stars {
    color: #ffc107;
    font-size: 20px;
}

.rating-bar .bar {
    height: 10px;
    background-color: #e0e0e0;
    flex-grow: 1;
    margin: 0 10px;
    border-radius: 5px;
}

.rating-bar .bar-fill {
    height: 100%;
    background-color: #28a745;
    border-radius: 5px;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.review-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.review-card .stars {
    color: #ffc107;
}

.review-card .author {
    font-weight: bold;
    margin-top: 10px;
}

/* Process Steps Section */
.process-steps {
    background-color: #f1f1f1;
    padding: 40px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #f7b731;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    background-color: #f7f7f7;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}

/* JS will be needed for accordion functionality. This is a visual representation. */

/* --- FOOTER STYLES --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    /* Space between columns */
}

.footer-column {
    flex: 1;
}

/* The first column is wider */
.footer-column.about {
    flex: 2;
}

.footer-column h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 25px;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

/* Payment methods section */
.payment-methods-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-icons img {
    height: 30px;
    /* To match the original image */
    border-radius: 4px;
    padding: 2px 4px;
}

/* Contact info styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    /* Space above the contact line */
}

.contact-info .icon svg {
    width: 20px;
    height: 20px;
    fill: #cccccc;
    /* Match link color */
}

.contact-info:hover .icon svg,
.contact-info:hover a {
    fill: #ffffff;
    /* Brighter on hover */
}


/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        /* Stack columns on top of each other */
        gap: 40px;
    }

    .footer-column.about {
        flex-basis: auto;
        /* Reset flex sizing */
    }
}

/* --- RESPONSIVE STYLES (For tablets and mobile devices) --- */
@media (max-width: 768px) {

    .payment-icons img {

        height: 20px;

    }

    /* --- General Adjustments --- */
    .container {
        padding: 15px;
        /* Reduce side padding on mobile */
    }

    h1,
    h2 {
        /* Slightly reduce heading sizes to prevent awkward wrapping */
        line-height: 1.3;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 24px;
        /* Adjust main title size */
    }

    .hero-features {
        flex-direction: column;
        /* Stack image and features list vertically */
        gap: 25px;
    }

    /* --- Price Section --- */
    .price-section {
        padding: 30px 15px;
    }

    .price {
        font-size: 40px;
        /* Reduce large price font */
    }

    .original-price {
        font-size: 24px;
        /* Reduce original price font */
    }

    /* --- Video Section --- */
    .video-section {
        flex-direction: column;
        /* Stack video and text vertically */
        padding: 30px 15px;
        gap: 25px;
    }

    .video-text {
        text-align: center;
        /* Center the text when it's stacked */
    }

    /* --- Offer Details Section --- */
    .offer-details {
        padding: 30px 15px;
    }

    .warning-bar {
        flex-direction: column;
        /* Stack the warning text and button */
        gap: 15px;
        text-align: center;
    }

    /* --- Form Section --- */
    .form-section {
        padding: 30px 15px;
    }

    .form-container {
        padding: 20px;
        /* Reduce padding inside the form card */
    }

    /* --- Product Info Section --- */
    .product-info {
        padding: 30px 15px;
    }

    /* NOTE: The .product-info-grid uses 'auto-fit', so it will automatically 
       become a single column on smaller screens. No extra code is needed! */


    /* --- Reviews Section --- */
    .reviews-section {
        padding: 30px 15px;
    }

    .reviews-header {
        font-size: 28px;
    }

    /* NOTE: The .review-cards grid also uses 'auto-fit' and will stack
       automatically. No extra code is needed! */


    /* --- Process Steps Section --- */
    .process-steps {
        padding: 30px 15px;
    }

    /* NOTE: The .steps-grid also uses 'auto-fit' and will stack
       automatically. No extra code is needed! */


    /* --- FAQ Section --- */
    .faq-section {
        padding: 30px 15px;
    }

    /* --- Footer Section --- */
    .footer-container {
        flex-direction: column;
        /* Stack footer columns vertically */
        gap: 40px;
    }

    .footer-column.about {
        flex-basis: auto;
        /* Reset flex sizing for vertical layout */
    }

    .footer-column h3 {
        margin-bottom: 15px;
        /* Reduce space below footer titles */
    }
}