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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* CSS Variables for consistent theming */
:root {
    --primary-color: #2d5016;
    --secondary-color: #5d8a34;
    --accent-color: #7fb069;
    --light-green: #e8f5e8;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; line-height: 1.4; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #f8fdf8 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: white;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: var(--light-green);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.blog-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

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

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

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

.newsletter-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(93, 138, 52, 0.1);
}

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

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

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

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.social-links a {
    padding: 8px 16px;
    background-color: var(--secondary-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
}

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

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    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;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    max-width: 300px;
}

.values-section,
.team-section,
.experience-section {
    margin-bottom: 4rem;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.value-card h3 {
    color: var(--primary-color);
}

.team-list {
    list-style: none;
    padding-left: 0;
}

.team-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-content {
    padding: 80px 0;
}

.services-main {
    margin-bottom: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-icon img {
    width: 100%;
    height: auto;
}

.service-details h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-price {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.additional-services {
    margin-bottom: 4rem;
}

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

.additional-card {
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.additional-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-section {
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

/* Testimonials Page Styles */
.testimonials-content {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.client-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.client-info p {
    color: var(--text-light);
    margin: 0;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content {
    margin-bottom: 1rem;
    font-style: italic;
}

.project-details {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonials-stats {
    margin-bottom: 4rem;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--primary-color);
    border-radius: var(--radius);
    color: white;
}

.testimonials-cta h2 {
    color: white;
}

.testimonials-cta p {
    color: rgba(255,255,255,0.9);
}

.project-types {
    margin-bottom: 4rem;
}

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

.project-type {
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary-color);
}

.project-type h3 {
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-content {
    padding: 80px 0;
}

.featured-article {
    margin-bottom: 4rem;
}

.article-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

.date {
    color: var(--text-light);
}

.blog-categories {
    margin-bottom: 4rem;
}

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

.category-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.category-card h3 {
    color: var(--primary-color);
}

.post-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-newsletter {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
    text-align: center;
}

.popular-tags {
    margin-bottom: 4rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: white;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-info-section {
    margin-bottom: 4rem;
}

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

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-icon img {
    width: 50px;
    height: 50px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.form-container {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.additional-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-hours {
    margin-bottom: 4rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
    max-width: 500px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.day {
    font-weight: 500;
}

.time {
    color: var(--secondary-color);
}

.hours-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Thanks Page Styles */
.thank-you-content {
    padding: 80px 0;
    text-align: center;
}

.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-card h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thank-you-details {
    margin-bottom: 3rem;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.emergency-contact,
.additional-resources,
.social-follow {
    margin-bottom: 3rem;
    text-align: center;
}

.emergency-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.emergency-item {
    padding: 1rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

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

.resource-card {
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-link {
    color: var(--secondary-color);
    font-weight: 500;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--radius);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--light-green);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* Article Pages Styles */
.article-content {
    padding: 80px 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.article-header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-header .article-meta {
    justify-content: center;
    margin-bottom: 2rem;
}

.read-time {
    color: var(--text-light);
}

.article-header .article-image {
    margin-bottom: 2rem;
}

.article-header .article-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

.article-body h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.plant-list,
.watering-schedule,
.watering-techniques,
.mulch-types,
.summer-pruning,
.fertilizing-schedule,
.summer-problems,
.hot-weather-tips,
.bloom-calendar,
.mistakes-section,
.plant-categories,
.style-showcase,
.budget-ideas {
    margin: 2rem 0;
}

.plant-item,
.style-item,
.budget-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.plant-item h3,
.style-item h3,
.budget-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tips-section,
.zones-grid,
.small-space-tips {
    margin: 2rem 0;
}

.zone-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary-color);
}

.zone-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.conclusion h2 {
    color: var(--primary-color);
}

.author-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--radius);
}

.author-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.related-articles {
    margin-top: 3rem;
}

.related-articles h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.related-article {
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.related-article:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-article h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-article p {
    color: var(--text-light);
    margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .header .container {
        padding: 1rem 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-grid,
    .process-steps,
    .categories-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .services-preview,
    .blog-preview,
    .newsletter,
    .about-content,
    .services-content,
    .testimonials-content,
    .blog-content,
    .contact-content,
    .thank-you-content,
    .legal-content,
    .article-content {
        padding: 40px 0;
    }
    
    .article-body,
    .legal-text,
    .thank-you-card,
    .form-container {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .newsletter,
    .thank-you-actions,
    .social-links,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .article-body,
    .legal-text {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
