/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}
img{
    max-width: 100%;
    width: 500px;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Image Section */
.product-image {
    text-align: center;
    padding: 40px 20px 20px;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.learn-more-button {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: background 0.3s ease, color 0.3s ease;
}

.learn-more-button:hover {
    background: white;
    color: #2575fc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.benefits .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-card h3 {
    color: #2575fc;
    margin-bottom: 15px;
}

/* Ingredients Section */
.ingredients {
    padding: 60px 20px;
}

.ingredients h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.ingredient-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ingredient-item {
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #2575fc;
    border-radius: 5px;
}

/* Differentiators Section */
.differentiators {
    padding: 60px 20px;
    background-color: #e9f7fe;
    text-align: center;
}

.differentiators h2 {
    margin-bottom: 30px;
}

.differentiators ul {
    list-style: none;
    display: inline-block;
}

.differentiators li {
    padding: 10px 20px;
    margin: 10px;
    background: white;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Bonuses Section */
.bonuses {
    padding: 60px 20px;
    text-align: center;
}

.bonus-blocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0;
}

.bonus-card {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 30px;
    background: #fff8e1;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus-card h3 {
    color: #ff9800;
    margin-bottom: 15px;
}

.shipping {
    font-weight: bold;
    color: #4caf50;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Purchase Options */
.purchase-options {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.purchase-options h2 {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.offer-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ddd;
    text-align: center;
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.offer-card.popular {
    border-left: 5px solid #4caf50;
    position: relative;
}

.offer-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-card h3 {
    color: #2575fc;
    margin-bottom: 15px;
}

.bottle-image {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.buy-button {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.buy-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight {
    color: #4caf50;
    font-weight: bold;
}

.recommendation {
    color: #ff9800;
    font-style: italic;
}

/* Social Proof */
.social-proof {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-size: 1.2rem;
}

.social-proof p {
    margin: 10px 0;
}

/* Guarantee */
.guarantee {
    padding: 60px 20px;
    text-align: center;
}

.guarantee h2 {
    color: #4caf50;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-toggle {
    width: 100%;
    background: white;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-item.active .faq-toggle::after {
    content: '-';
}

.faq-content {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 0 20px 20px;
}

/* Legal Footer */
.legal-footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.legal-footer p {
    margin: 10px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits .container,
    .bonus-blocks {
        flex-direction: column;
    }
    
    .benefit-card,
    .bonus-card {
        margin-bottom: 20px;
    }
    
    .offer-card.popular::before {
        top: 10px;
        right: 10px;
    }
}