* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A8C33B;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #2d2d2d;
    --bg-section-alt: #e8e8e8;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #8fa82f;
    transform: scale(1.05);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
    display: inline-block;
    font-size: 14px;
}

.pill-link {
    background-color: rgba(168, 195, 59, 0.2);
    border: 1px solid var(--primary-color);
}

.pill-link:hover,
.pill-link.active {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 50%, #6b9e3d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image/picture2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero:hover .hero-background {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;

    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary:hover {
    background-color: #8fa82f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 195, 59, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Product Section */
.product-section {
    background-color: var(--bg-light);
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info {
    color: var(--text-dark);
}

.product-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 20px;
}

.price-label {
    font-weight: bold;
    color: var(--text-dark);
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-order {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-order:hover {
    background-color: #8fa82f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 195, 59, 0.4);
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--bg-section-alt);
}

.advantages-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.advantages-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Components Section */
.components-section {
    background-color: #ffffff;
}

.components-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.components-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.component-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.component-icon {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.component-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.component-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.components-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Characteristics Section */
.characteristics-section {
    background-color: var(--bg-section-alt);
}

.characteristics-intro {
    max-width: 900px;
    margin: 0 auto 50px;
}

.characteristics-intro p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.characteristic-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.characteristic-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.characteristic-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.characteristic-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #ffffff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.why-choose-list {
    list-style: none;
}

.why-choose-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 16px;
}

.why-choose-list i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Suitable Section */
.suitable-section {
    background-color: var(--bg-section-alt);
}

.suitable-intro {
    max-width: 900px;
    margin: 0 auto 50px;
}

.suitable-intro p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.suitable-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.suitable-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.suitable-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* How to Take Section */
.how-to-take-section {
    background-color: #ffffff;
}

.how-to-take-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.how-to-take-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.how-to-take-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Packaging Section */
.packaging-section {
    background-color: var(--bg-section-alt);
}

.packaging-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.packaging-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.packaging-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Instructions Section */
.instructions-section {
    background-color: #ffffff;
}

.instructions-content {
    max-width: 900px;
    margin: 0 auto;
}

.instructions-content > p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.instructions-list {
    max-width: 900px;
    margin: 0 auto 25px;
    padding-left: 20px;
}

.instructions-list li {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.instructions-list li strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-section-alt);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.review-author {
    font-weight: bold;
    color: var(--text-dark);
}

/* Order Section */
.order-section {
    background-color: var(--bg-section-alt);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #8fa82f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 195, 59, 0.4);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-section-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #ffffff;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.disclaimer-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.disclaimer-content strong {
    color: var(--text-dark);
}

/* Page Content Styles */
.page-main {
    padding: 100px 0 80px;
    min-height: 60vh;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-date {
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.page-content section {
    margin-bottom: 40px;
}

.page-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content strong {
    color: var(--text-dark);
}

.page-links {
    margin-top: 40px;
    text-align: center;
}

/* Success Page */
.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

.success-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.success-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: bold;
}

.success-info {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.success-actions {
    margin-top: 30px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        display: none;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-wrapper,
    .about-content,
    .components-content,
    .why-choose-content,
    .how-to-take-content,
    .packaging-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantages-grid,
    .characteristics-grid,
    .suitable-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    font-weight: bold;
}

.cookie-table tbody tr:hover {
    background-color: var(--bg-light);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-primary,
    .btn-order {
        padding: 12px 25px;
        font-size: 14px;
    }

    .order-form {
        padding: 20px;
    }

    .price-value {
        font-size: 24px;
    }

    .page-content {
        padding: 25px 20px;
    }

    .page-content h1 {
        font-size: 28px;
    }

    .page-content h2 {
        font-size: 20px;
    }

    .success-content {
        padding: 40px 25px;
    }

    .success-content h1 {
        font-size: 28px;
    }

    .success-icon {
        font-size: 60px;
    }

    .contact-map iframe {
        height: 300px;
    }
}
