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

:root {
    --primary-color: #b8f416;
    --secondary-color: #65ae07;
    --accent-color: #dafd95;
    --text-dark: #2d3319;
    --text-light: #ffffff;
    --bg-light: #f8fef0;
    --border-color: #d5f5a3;
    --shadow: rgba(101, 174, 7, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#heroCanvas {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--text-dark);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #4d8905;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(101, 174, 7, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

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

.about-image img {
    border-radius: 20px;
    background-color: #ccc;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item .icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Plants Grid */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plant-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(101, 174, 7, 0.2);
}

.plant-image {
    height: 250px;
    overflow: hidden;
    background-color: #ccc;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-image img {
    transform: scale(1.05);
}

.plant-info {
    padding: 25px;
}

.plant-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.plant-info p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Process Section */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 15px var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

/* Natural Block */
.natural-block {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
}

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

.natural-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.natural-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.natural-image img {
    border-radius: 20px;
    background-color: #ccc;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 10px 30px var(--shadow);
}

/* FAQs */
.faqs {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--accent-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

/* Consultation Section */
.consultation {
    background-color: var(--bg-light);
}

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

.consultation-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.consultation-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.consultation-list {
    list-style: none;
    margin-bottom: 30px;
}

.consultation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.consultation-list svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.consultation-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.consultation-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.consultation-form button {
    width: 100%;
}

/* Plant Care Section */
.plant-care {
    background-color: #ffffff;
}

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

.care-image img {
    border-radius: 20px;
    background-color: #ccc;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.care-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.care-text > p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.care-services {
    margin-bottom: 30px;
}

.care-service {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.care-service svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.care-service h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.care-service p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d0d0d0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 244, 22, 0.2);
    color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .natural-content,
    .care-content,
    .consultation-content {
        grid-template-columns: 1fr;
    }

    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .plants-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .plant-info,
    .consultation-form {
        padding: 20px;
    }
}

/* Mobile-specific adjustments for 320px */
@media (max-width: 320px) {
    .logo span {
        font-size: 1rem;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--accent-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    white-space: nowrap;
}

.cookie-banner .btn-accept {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.cookie-banner .btn-accept:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.cookie-banner .btn-settings {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-banner .btn-settings:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.cookie-banner .btn-decline {
    background-color: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.cookie-banner .btn-decline:hover {
    background-color: #ff6b6b;
    color: var(--text-light);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cookie-settings-header h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.cookie-settings-section {
    margin-bottom: 25px;
}

.cookie-settings-section h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--secondary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-settings-section p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.cookie-settings-buttons .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-banner-buttons .btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-content {
        padding: 20px;
        margin: 10px;
    }

    .cookie-settings-header h2 {
        font-size: 1.5rem;
    }

    .cookie-settings-buttons {
        flex-direction: column;
    }

    .cookie-settings-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Phytodesign Page Styles */
.phyto-intro {
    background-color: var(--bg-light);
}

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

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-image img {
    border-radius: 20px;
    background-color: #ccc;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.phyto-directions {
    background-color: #ffffff;
}

.direction-block {
    margin-bottom: 60px;
}

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

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

.direction-block.reverse .direction-text {
    direction: ltr;
}

.direction-image img {
    border-radius: 15px;
    background-color: #ccc;
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 5px 20px var(--shadow);
}

.direction-text h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.direction-text h3 svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.direction-text > p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.direction-features {
    list-style: none;
    display: grid;
    gap: 10px;
}

.direction-features li {
    padding-left: 30px;
    position: relative;
    color: #555;
}

.direction-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.phyto-process {
    background-color: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--bg-light), 0 5px 15px var(--shadow);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.phyto-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Phytodesign Page Responsive */
@media (max-width: 992px) {
    .intro-content,
    .direction-content {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        gap: 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .process-timeline::before {
        left: 25px;
    }
}

@media (max-width: 768px) {
    .direction-block {
        margin-bottom: 40px;
    }

    .direction-text h3 {
        font-size: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-number {
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Contacts Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-section > p,
.contact-form-section > p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px var(--shadow);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.method-details p {
    color: #555;
    line-height: 1.6;
}

.method-details a {
    color: var(--secondary-color);
    font-weight: 600;
}

.method-details a:hover {
    text-decoration: underline;
}

.business-features {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
}

.business-features h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.business-features ul {
    list-style: none;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.business-features svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-form-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.contact-form button {
    width: 100%;
}

.map-section {
    padding: 80px 0 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.map-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

/* Contacts Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 25px;
    }

    .contact-method {
        padding: 20px;
    }
}

/* Success Page Styles */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
}

.success-content {
    text-align: center;
    max-width: 600px;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-content .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.success-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.success-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    color: #444;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2.2rem;
    }

    .legal-content {
        padding: 30px 25px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .success-content {
        padding: 40px 25px;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-buttons {
        flex-direction: column;
    }

    .success-buttons .btn {
        width: 100%;
    }
}