/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #A73827;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #A73827;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #A73827;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #DAC8BA 0%, #E99F8B 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #A73827;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #8b2e1f;
}

.btn-secondary {
    background: transparent;
    color: #A73827;
    border: 2px solid #A73827;
}

.btn-secondary:hover {
    background: #A73827;
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #A73827;
    margin-bottom: 3rem;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

/* Features and Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    stroke: #A73827;
    fill: none;
}

.feature-card h3 {
    color: #A73827;
    margin-bottom: 1rem;
}

/* Banner */
.banner {
    background: #fff;
    padding: 80px 0;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.banner-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.banner-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    align-self: flex-start;
}

.banner-btn:hover {
    background: #333;
    color: #fff;
}

/* Featured Section */
.featured-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.featured-dark {
    background: #000;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-dark h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.featured-dark p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.featured-dark-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 1px solid #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    align-self: flex-start;
}

.featured-dark-btn:hover {
    background: transparent;
    color: #fff;
}

.featured-nature {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.featured-nature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/picture35.jpg') center/cover;
    opacity: 0.3;
}

/* Product Cards */
.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.product-price {
    text-align: center;
}

.product-price .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-right: 10px;
}

.product-price .new-price {
    color: #A73827;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Interactive Elements */
.interactive-text {
    margin-top: 2rem;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-left: 3px solid #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.interactive-text:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.interactive-text h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.interactive-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-item .number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: block;
}

.stat-item .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Plant Grid */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plant-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.plant-card:hover {
    transform: translateY(-5px);
}

.plant-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.plant-card-content {
    padding: 1.5rem;
}

.plant-card h3 {
    color: #A73827;
    margin-bottom: 0.5rem;
}

.plant-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Category Section */
.category-section {
    margin: 4rem 0;
}

.category-title {
    font-size: 1.8rem;
    color: #A73827;
    margin-bottom: 2rem;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    stroke: #A73827;
    fill: none;
}

.service-card h3 {
    color: #A73827;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Plants Grid */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card-content {
    padding: 1.5rem;
}

/* Benefit Box */
.benefit-box {
    margin-top: 1.5rem;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    transition: all 0.3s;
}

.benefit-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.benefit-box strong {
    color: #E99F8B;
    display: block;
    margin-bottom: 5px;
}

/* Consultation Process */
.consultation-process {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #A73827;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.feature-list li:hover {
    color: #fff;
    padding-left: 10px;
    border-left: 3px solid #fff;
}

.feature-list li::before {
    content: "✓ ";
    color: #E99F8B;
    font-weight: bold;
    margin-right: 10px;
}

/* Accessory Grid */
.accessory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.accessory-item {
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.accessory-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.accessory-item strong {
    color: #E99F8B;
    display: block;
    margin-bottom: 5px;
}

/* Service Highlight */
.service-highlight {
    margin-top: 1.5rem;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.service-highlight:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.service-highlight strong {
    color: #E99F8B;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    color: #A73827;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #A73827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-details a {
    color: #A73827;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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: #A73827;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Container */
.map-container {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Success Page */
.success-container {
    background: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #A73827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.success-container h1 {
    color: #A73827;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.success-container p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.success-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.success-buttons .btn {
    min-width: 150px;
}

/* Content Pages (Privacy, Terms, Cookie, Return) */
.content {
    padding: 80px 0;
}

.content h1 {
    color: #A73827;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.content h2 {
    color: #A73827;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
    color: #666;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.highlight-box {
    background: #f9f9f9;
    border-left: 4px solid #A73827;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #DAC8BA;
}

.cookie-banner-text a {
    color: #E99F8B;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #fff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-banner-btn-accept {
    background: #A73827;
    color: #fff;
}

.cookie-banner-btn-accept:hover {
    background: #8b2e1f;
}

.cookie-banner-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-banner-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-banner-btn-settings {
    background: transparent;
    color: #DAC8BA;
    border: 1px solid #DAC8BA;
}

.cookie-banner-btn-settings:hover {
    background: rgba(218,200,186,0.1);
    color: #fff;
    border-color: #fff;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    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 {
    margin-bottom: 1rem;
    color: #E99F8B;
}

.footer-section a {
    color: #DAC8BA;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features,
    .services-grid,
    .plants-grid,
    .products-grid,
    .plant-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .banner-image {
        height: 400px;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .featured-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-dark {
        padding: 60px 30px;
    }
    
    .featured-dark h2 {
        font-size: 2rem;
    }
    
    .featured-nature {
        padding: 40px 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .success-container {
        padding: 40px 30px;
    }
    
    .success-container h1 {
        font-size: 2rem;
    }
}

/* Responsive Design - Mobile (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    nav {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .nav-links {
        padding: 0.75rem;
    }
    
    .nav-links li {
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .featured-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-dark {
        padding: 30px 15px;
    }
    
    .featured-dark h2 {
        font-size: 1.5rem;
    }
    
    .featured-dark p {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-item .number {
        font-size: 1.5rem;
    }
    
    .stat-item .label {
        font-size: 0.75rem;
    }
    
    .interactive-text {
        padding: 15px;
    }
    
    .interactive-text h4 {
        font-size: 1rem;
    }
    
    .interactive-text p {
        font-size: 0.8rem;
    }
    
    .featured-dark-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .featured-nature {
        padding: 20px 15px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-price .old-price {
        font-size: 1rem;
    }
    
    .product-price .new-price {
        font-size: 1.2rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features,
    .services-grid,
    .plants-grid,
    .products-grid,
    .plant-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card,
    .service-card,
    .plant-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-box {
        padding: 12px;
    }
    
    .benefit-box strong {
        font-size: 1rem;
    }
    
    .consultation-process {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .accessory-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .accessory-item {
        padding: 12px;
    }
    
    .accessory-item strong {
        font-size: 0.9rem;
    }
    
    .service-highlight {
        padding: 15px;
    }
    
    .service-highlight strong {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .content {
        padding: 40px 0;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content h2 {
        font-size: 1.3rem;
    }
    
    .success-container {
        padding: 30px 15px;
        margin: 20px auto;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .success-container h1 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .success-container p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .success-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
        display: block;
        margin: 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .copyright {
        padding-top: 1.5rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .content ul {
        margin-left: 1.5rem;
    }
    
    .content li {
        font-size: 0.85rem;
    }
    
    .highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-banner-text {
        min-width: 100%;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

