* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #63a91f;
    --secondary-color: #c6dc93;
    --tertiary-color: #b0d3bf;
    --text-light: #ffffff;
    --text-dark: #1C2A2F;
    --bg-light: #f5f5f5;
    --bg-dark: #2c3e50;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 169, 31, 0.3) 0%, rgba(176, 211, 191, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e0e0e0" width="1200" height="600"/><path d="M0 300 Q 300 200 600 300 T 1200 300" stroke="%23cccccc" stroke-width="2" fill="none"/><circle cx="300" cy="200" r="50" fill="%23d0d0d0"/><circle cx="900" cy="400" r="80" fill="%23d5d5d5"/></svg>') center/cover;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
}

.banner-box {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin-left: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.banner-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.banner-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.services-showcase {
    background: var(--primary-color);
    padding: 4rem 0;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
 
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
 
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 2rem;
    color: var(--text-dark);
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-more {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-more:hover {
    background: var(--primary-color);
    color: white;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.content-section {
    padding: 4rem 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.service-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-content ul {
    list-style: none;
    margin-top: 1rem;
}

.card-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.card-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--tertiary-color);
    border-radius: 15px;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.features-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(99, 169, 31, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 169, 31, 0.3);
}

.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    stroke: var(--primary-color);
    stroke-width: 2;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--tertiary-color);
}

.contact-form {
    margin-top: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-map {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-map h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    border: none;
    display: block;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 220, 147, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

img {
    background-color: transparent;
    display: block;
}

.logo-img {
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(198, 220, 147, 0.2);
    }

    .hero-banner {
        min-height: 400px;
    }

    .banner-box {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem;
        max-width: 100%;
    }

    .banner-box h2 {
        font-size: 1.8rem;
    }

    .banner-accent {
        width: 60px;
        height: 60px;
        top: -10px;
        left: -10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    .hero-banner {
        min-height: 350px;
    }

    .banner-box {
        padding: 1.5rem;
        margin: 1rem;
    }

    .banner-box h2 {
        font-size: 1.5rem;
    }

    .banner-accent {
        width: 50px;
        height: 50px;
        top: -8px;
        left: -8px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-content,
    .card-content {
        padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.creative-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.interactive-plants-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.plants-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plant-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(99, 169, 31, 0.2);
}

.plant-card:hover .plant-leaf {
    animation: leafFloat 2s ease-in-out infinite;
}

.plant-card:hover .plant-flower {
    animation: flowerRotate 3s linear infinite;
}

.plant-visual {
    height: 150px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-svg {
    width: 100px;
    height: 150px;
}

.plant-leaf {
    animation: leafFloat 3s ease-in-out infinite;
}

.plant-leaf.leaf-2 {
    animation-delay: 0.5s;
}

.plant-leaf.leaf-3 {
    animation-delay: 1s;
}

.plant-flower {
    animation: flowerRotate 4s linear infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes flowerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.plant-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.plant-card p {
    color: #555;
    line-height: 1.6;
}

.creative-process-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(99, 169, 31, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.interactive-gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
}

.seasonal-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.season-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.season-btn:hover,
.season-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 169, 31, 0.3);
}

.seasonal-content {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seasonal-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.seasonal-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.seasonal-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.wedding-inspiration-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.inspiration-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.inspiration-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 169, 31, 0.3);
}

.inspiration-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.inspiration-overlay {
    position: relative;
    z-index: 2;
    color: white;
}

.inspiration-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.inspiration-overlay p {
    font-size: 1rem;
    line-height: 1.6;
}

.inspiration-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.inspiration-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 2px solid var(--tertiary-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.plant-benefits-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(99, 169, 31, 0.2);
    border: 2px solid var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

.interactive-plant-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
}

.care-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.care-tab {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.care-tab:hover,
.care-tab.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 169, 31, 0.3);
}

.care-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.care-tab.active .care-icon,
.care-tab:hover .care-icon {
    color: white;
}

.care-icon svg {
    width: 100%;
    height: 100%;
}

.care-tab h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.care-tab p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.care-content {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.care-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.care-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.care-info ul {
    list-style: none;
    padding: 0;
}

.care-info ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--tertiary-color);
}

.care-info ul li:last-child {
    border-bottom: none;
}

.care-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .stats-grid,
    .plants-showcase,
    .process-timeline,
    .inspiration-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .seasonal-tabs {
        flex-direction: column;
    }

    .season-btn {
        width: 100%;
    }

    .care-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .stat-card,
    .plant-card,
    .process-step,
    .inspiration-card,
    .testimonial-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .plant-visual {
        height: 120px;
    }

    .plant-svg {
        width: 80px;
        height: 120px;
    }
}

.policy-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--tertiary-color);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.policy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.policy-content ul li strong {
    color: var(--primary-color);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.policy-content a:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--tertiary-color);
    text-align: center;
}

.policy-footer p {
    color: var(--primary-color);
    font-weight: 500;
}

.today-date {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-content h2 {
        font-size: 1.75rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }

    .policy-content h4 {
        font-size: 1.1rem;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content h4 {
        font-size: 1rem;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 0.95rem;
    }

    .policy-content ul {
        padding-left: 1.5rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-content a:hover {
    color: var(--text-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject,
.btn-settings {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(99, 169, 31, 0.3);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-reject:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-settings {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-settings:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject,
    .btn-settings {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content p {
        font-size: 0.85rem;
    }

    .btn-accept,
    .btn-reject,
    .btn-settings {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject,
    .btn-settings {
        width: 100%;
    }
}
