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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fffe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2d5a27;
}

h2 {
    font-size: 2rem;
    color: #2d5a27;
}

h3 {
    font-size: 1.5rem;
    color: #4a7c59;
}

p {
    margin-bottom: 1rem;
    color: #000000;
}

a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d5a27;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #8eb69b, #4a7c59);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn-outline:hover {
    background: #4a7c59;
    color: white;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff, #f0f9f4);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a27;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5a27;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a7c59;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.about-grid,
.services-grid,
.reviews-grid,
.contact-info-grid,
.blog-preview-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.blog-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Card Styles */
.about-card,
.service-card,
.review-card,
.contact-info-card,
.blog-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f5e8;
}

.about-card:hover,
.service-card:hover,
.contact-info-card:hover,
.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon,
.info-icon,
.blog-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Review Cards */
.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1.5rem;
    text-align: right;
}

.review-author strong {
    color: #2d5a27;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info-card a {
    color: inherit;
}

/* Blog Preview */
.blog-preview-card h3 a {
    color: #2d5a27;
}

.read-more {
    color: #4a7c59;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-link-center {
    text-align: center;
    margin-top: 3rem;
}

/* Sections */
.about-section,
.services-section,
.reviews-section,
.contact-info-section,
.blog-preview-section {
    padding: 80px 0;
}

.about-section {
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
}

.services-section {
    background: white;
}

.reviews-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
}

.contact-info-section {
    background: white;
}

.blog-preview-section {
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
}

/* About Page Specific */
.our-story-section,
.values-section,
.team-section {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    font-size: 5rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.member-role {
    color: #4a7c59;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Services Page */
.services-overview {
    padding: 80px 0;
    background: white;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
}

.service-header {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-main-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.service-features .fas {
    color: #4a7c59;
    font-size: 0.9rem;
}

.service-price {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 8px;
    text-align: center;
    color: #2d5a27;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 2rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.process-arrow {
    color: #4a7c59;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27, #1e3d1a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-articles {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #e8f5e8;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.blog-main-icon {
    font-size: 2.5rem;
    color: #4a7c59;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8f5e8;
}

.blog-author {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter Styles */
.newsletter-section {
    padding: 80px 0;
    background: white;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item .fas {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.newsletter-form-container {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 2.5rem;
    border-radius: 16px;
}

.newsletter-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.newsletter-preview {
    padding: 80px 0;
    background: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.preview-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    border-radius: 16px;
}

.preview-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container,
.contact-info-container {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-info-list {
    margin: 2rem 0;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item .fas {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.social-contact {
    margin-top: 3rem;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-contact .social-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a7c59;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-contact .social-links a:hover {
    background: rgba(74, 124, 89, 0.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-directions ul {
    list-style: none;
    margin-top: 1.5rem;
}

.map-directions li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.map-directions .fas {
    color: #4a7c59;
    width: 20px;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 4rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

/* Forms */
.contact-form,
.newsletter-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d5a27;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.detail-item .fas {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.recommendations-section {
    padding: 80px 0;
    background: white;
}

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

.recommendation-card {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.rec-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

/* Blog Article Styles */
.blog-article {
    padding: 40px 0 80px;
    background: white;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    border-radius: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.back-link {
    color: #4a7c59;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    border-bottom: 3px solid #4a7c59;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.article-section h3 {
    color: #4a7c59;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tips-grid,
.methods-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-item,
.method-item,
.tool-item {
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.tip-item .fas,
.method-item .fas,
.tool-item .fas {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tips-box,
.warning-box,
.emergency-box {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #4a7c59;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left-color: #ffc107;
}

.emergency-box {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-left-color: #dc3545;
    text-align: center;
}

.plant-recommendations,
.watering-steps,
.seasonal-watering,
.orientation-guide {
    margin: 2rem 0;
}

.plant-item,
.step-item,
.season-card,
.orientation-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8f5e8;
}

.watering-steps .step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.watering-steps .step-number {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.seasonal-watering {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.orientation-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.article-conclusion {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.article-conclusion h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e8f5e8;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-author-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: 12px;
}

.author-avatar {
    font-size: 3rem;
    color: #4a7c59;
}

.related-articles {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
}

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

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card .fas {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.document-info {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    border-bottom: 3px solid #4a7c59;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.data-categories,
.purposes-grid,
.retention-periods,
.recipients-list,
.rights-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.purposes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.category-item,
.purpose-item,
.period-item,
.recipient-item,
.right-item {
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.purpose-item .fas,
.recipient-item .fas,
.right-item .fas {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details,
.authority-info {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item .fas {
    color: #4a7c59;
    width: 20px;
}

/* Cookie Policy Specific */
.cookie-categories {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a7c59;
}

.cookie-category .fas {
    color: #4a7c59;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookies-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8f5e8;
}

.cookies-table th {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
    color: white;
    font-weight: 600;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fffe;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.browser-item .fab {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

/* Terms of Service Specific */
.provider-info,
.pricing-info,
.delivery-terms,
.warranty-info,
.withdrawal-info,
.complaint-process,
.dispute-resolution,
.special-provisions,
.final-provisions {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #4a7c59;
}

.contract-process,
.services-detail,
.treatment-methods,
.prevention-tips {
    margin: 2rem 0;
}

.process-step,
.service-category,
.method-category,
.tip-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8f5e8;
}

.complaint-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f4);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d5a27, #1e3d1a);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d5a27, #1e3d1a);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

.cookie-settings-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-content h2 {
    margin-bottom: 2rem;
    color: #2d5a27;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-info h3 {
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.cookie-setting-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #4a7c59;
}

.cookie-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::before {
    transform: translateX(25px);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-settings-modal {
        padding: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .seasonal-watering,
    .orientation-guide {
        grid-template-columns: 1fr;
    }
    
    .tips-grid,
    .methods-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .services-grid,
    .reviews-grid,
    .contact-info-grid,
    .blog-preview-grid,
    .blog-grid,
    .related-grid,
    .recommendations-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-settings-modal,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    .page-header {
        background: none;
        color: black;
        padding: 20pt 0;
    }
    
    .legal-document,
    .article-content {
        max-width: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
    
    .btn-outline {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
    
    .hero {
        background: #fff;
    }
    
    .page-header {
        background: #000;
        color: #fff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #4a7c59;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
