/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3d2d;
    background-color: #f5f7f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advertorial Mark */
.advertorial-mark {
    background-color: #ffd700;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    border-bottom: 3px solid #ffb700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #5a7a5a;
    margin: 0;
    letter-spacing: 1px;
}

.home-btn {
    background-color: #7a9a7a;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(122, 154, 122, 0.3);
}

.home-btn:hover {
    background-color: #5a7a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 154, 122, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5a7a5a 0%, #7a9a7a 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-image {
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.intro-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.intro-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
    text-align: center;
}

.intro-section p {
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #e8ebe5;
    padding: 70px 0;
}

.why-choose-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
    text-align: center;
}

.why-choose-section > .container > p {
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #7a9a7a;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 18px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

/* Ingredients Intro */
.ingredients-intro {
    background-color: #ffffff;
    padding: 70px 0 50px;
    text-align: center;
}

.ingredients-intro h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 20px;
}

.ingredients-intro p {
    font-size: 17px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

/* Ingredient Sections */
.ingredient-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.ingredient-section.alt-bg {
    background-color: #f5f7f3;
}

.ingredient-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingredient-content.reverse {
    direction: rtl;
}

.ingredient-content.reverse > * {
    direction: ltr;
}

.ingredient-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ingredient-text h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
}

.ingredient-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #666666;
}

/* Additional Ingredients */
.additional-ingredients {
    background-color: #e8ebe5;
    padding: 70px 0;
}

.additional-ingredients h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 50px;
    text-align: center;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.additional-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #7a9a7a;
}

.additional-card h4 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 18px;
}

.additional-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

/* Product Details */
.product-details {
    background-color: #ffffff;
    padding: 70px 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-info h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
}

.product-info > p {
    font-size: 17px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 35px;
}

.dosage-box {
    background-color: #e8ebe5;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 5px solid #7a9a7a;
}

.dosage-box h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 12px;
}

.dosage-box p {
    font-size: 17px;
    color: #2d3d2d;
}

.composition-table {
    margin-top: 35px;
}

.composition-table h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
}

.composition-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.composition-table table tr {
    border-bottom: 1px solid #e8ebe5;
}

.composition-table table td {
    padding: 15px 0;
    font-size: 16px;
}

.composition-table table td:first-child {
    color: #2d3d2d;
    font-weight: 500;
}

.composition-table table td:last-child {
    text-align: right;
    color: #666666;
}

.table-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    margin-top: 12px;
}

/* Important Information */
.important-info {
    background-color: #f5f7f3;
    padding: 70px 0;
}

.important-info h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: left;
}

.important-info h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: left;
}

.important-info h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: left;
}

.important-info h4 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: left;
}

.important-info p {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #2d3d2d;
    margin-bottom: 20px;
    text-align: left;
}

.important-info > .container > section {
    margin-bottom: 40px;
}

.important-info section section {
    margin-bottom: 30px;
    margin-top: 0;
}

.important-info section:first-child {
    margin-top: 0;
}

.important-info ul {
    list-style: none;
    margin-bottom: 20px;
    margin-top: 15px;
    padding-left: 0;
}

.important-info ul li {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #2d3d2d;
    margin-bottom: 12px;
    padding-left: 0;
}

/* Override for info-list in important-info section */
.important-info .info-list li {
    padding: 18px 0 18px 35px !important;
    position: relative;
    margin-bottom: 12px;
}

.important-info .info-list li:before {
    content: "•";
    color: #7a9a7a;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 18px;
}

.important-info ol {
    list-style: none;
    margin-bottom: 20px;
    margin-top: 15px;
    padding-left: 0;
}

.important-info ol li {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #2d3d2d;
    margin-bottom: 12px;
    padding-left: 0;
}

.important-info strong {
    font-weight: 600;
    color: #2d3d2d;
}

.important-info a {
    color: #7a9a7a;
    text-decoration: underline;
}

.important-info a:hover {
    color: #5a7a5a;
}

.important-info div {
    margin-bottom: 20px;
}

.important-info form {
    margin-top: 20px;
}

.important-info form label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    color: #2d3d2d;
    margin-bottom: 8px;
}

.important-info form input[type="text"],
.important-info form input[type="email"],
.important-info form input[type="tel"],
.important-info form select,
.important-info form textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: 2px solid #e8ebe5;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.important-info form input[type="checkbox"] {
    margin-right: 8px;
    margin-bottom: 20px;
}

.important-info form button {
    background-color: #7a9a7a;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.important-info form button:hover {
    background-color: #5a7a5a;
}

.important-info #contact-success,
.important-info #contact-error {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.important-info #contact-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.important-info #contact-success strong {
    color: #155724;
    font-weight: 600;
}

.important-info #contact-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.important-info #contact-error strong {
    color: #721c24;
    font-weight: 600;
}

.info-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.info-list li {
    padding: 18px 0 18px 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    position: relative;
}

.info-list li:before {
    content: "•";
    color: #7a9a7a;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
}

/* Lead Form Section */
.lead-form-section {
    background: linear-gradient(135deg, #5a7a5a 0%, #7a9a7a 100%);
    padding: 90px 0;
}

.form-offer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-wrapper {
    flex: 1;
    max-width: 650px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.offer-image-wrapper {
    flex: 0 0 auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    object-fit: contain;
    margin-bottom: 20px;
}

.offer-price {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.price-amount {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: 700;
    color: #5a7a5a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.price-label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #7a9a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-wrapper h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 600;
    color: #5a7a5a;
    margin-bottom: 18px;
    text-align: center;
}

.form-wrapper > p {
    font-size: 17px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3d2d;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e8ebe5;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a9a7a;
    box-shadow: 0 0 0 3px rgba(122, 154, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #7a9a7a;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
}

.submit-btn {
    background-color: #7a9a7a;
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(122, 154, 122, 0.3);
}

.submit-btn:hover {
    background-color: #5a7a5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 154, 122, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-message {
    padding: 18px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

#leadFormSuccess {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

#leadFormSuccess strong {
    color: #155724;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2d3d2d;
    color: #ffffff;
    padding: 70px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #7a9a7a;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7a9a7a;
}

.footer-disclosures {
    border-top: 2px solid #444444;
    padding-top: 40px;
    margin-bottom: 40px;
}

.footer-disclosures h4 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #7a9a7a;
}

.disclosure {
    font-size: 14px;
    line-height: 1.9;
    color: #aaaaaa;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #3a3a3a;
    border-radius: 10px;
    border-left: 4px solid #7a9a7a;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaaaaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-offer-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .offer-image-wrapper {
        max-width: 100%;
        order: -1;
    }

    .offer-image {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .offer-price {
        padding: 15px;
    }

    .price-amount {
        font-size: 42px;
    }

    .price-label {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .ingredient-content,
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ingredient-content.reverse {
        direction: ltr;
    }

    .benefits-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 40px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .logo h1 {
        font-size: 26px;
    }

    .home-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .intro-section h2,
    .why-choose-section h2,
    .ingredients-intro h2,
    .additional-ingredients h2,
    .product-info h2,
    .form-wrapper h2 {
        font-size: 26px;
    }

    .important-info h1,
    .important-info h2 {
        font-size: 26px;
    }

    .important-info h3 {
        font-size: 22px;
    }

    .ingredient-text h3 {
        font-size: 24px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f7f3;
}

::-webkit-scrollbar-thumb {
    background: #7a9a7a;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a7a5a;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #7a9a7a #f5f7f3;
}