/* 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;
    background-color: #fff;
}

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

/* Header and Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    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: bold;
    color: #2D5A27;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7FB069;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8FF 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    color: #2D5A27;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #7FB069;
    color: white;
    border-color: #7FB069;
}

.btn-primary:hover {
    background: #6da054;
    border-color: #6da054;
}

.btn-secondary {
    background: transparent;
    color: #2D5A27;
    border-color: #2D5A27;
}

.btn-secondary:hover {
    background: #2D5A27;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #7FB069;
    border-color: #7FB069;
}

.btn-outline:hover {
    background: #7FB069;
    color: white;
}

/* Features section */
.features {
    padding: 4rem 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

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

/* About preview section */
.about-preview {
    padding: 4rem 0;
    background: #F8F9FA;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #2D5A27;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #7FB069;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7FB069;
}

.footer-bottom {
    border-top: 1px solid #4A7C59;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D5A27;
    color: white;
    padding: 1rem;
    z-index: 1001;
    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;
}

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

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

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2D5A27;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7FB069;
}

/* Blog styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    background: #E8F5E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.read-more {
    color: #7FB069;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2D5A27;
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-features li:before {
    content: "✓ ";
    color: #7FB069;
    font-weight: bold;
}

/* Page specific */
.page-header {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8FF 100%);
    padding: 2rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 0;
}

/* Additional styles for new components */

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #7FB069;
    text-decoration: none;
}

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

.contact-note {
    font-size: 0.9rem;
    color: #888;
}

.office-hours h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-form-section h2 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

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

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #7FB069;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-info h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Services page specific */
.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7FB069;
    margin-top: 1rem;
}

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

.process-section h2 {
    color: #2D5A27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

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

.process-step h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.cta-section {
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

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

/* About page specific */
.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

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

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}

.team-section {
    margin-top: 3rem;
}

.team-section h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-icon {
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #7FB069;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certificates-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.certificates-section h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

.certificates-text ul {
    list-style: none;
}

.certificates-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.certificates-text li:before {
    content: "✓ ";
    color: #7FB069;
    font-weight: bold;
}

/* Testimonials page specific */
.testimonials-intro {
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-rating {
    margin-top: 1rem;
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.stats-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.stats-section h2 {
    text-align: center;
    color: #2D5A27;
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
}

.portfolio-preview {
    margin-top: 3rem;
}

.portfolio-preview h2 {
    color: #2D5A27;
    margin-bottom: 2rem;
}

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

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: #E8F5E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item h3 {
    color: #2D5A27;
    margin: 1rem;
    margin-bottom: 0.5rem;
}

.portfolio-item p {
    color: #666;
    margin: 1rem;
    font-size: 0.9rem;
}

/* Blog page specific */
.blog-intro {
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.category-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-icon {
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

.newsletter-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #2D5A27;
    color: white;
    border-radius: 10px;
}

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

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

.newsletter-text p {
    color: #ccc;
}

.newsletter-signup .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-signup input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.newsletter-note {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Thanks page specific */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #2D5A27;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #7FB069;
    margin-bottom: 2rem;
}

.thanks-message {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-message h2 {
    color: #2D5A27;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #7FB069;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

.contact-emergency {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-emergency h3 {
    color: #2D5A27;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.emergency-contact:hover {
    background: #E8F5E8;
}

.emergency-contact div {
    display: flex;
    flex-direction: column;
}

.emergency-contact strong {
    color: #2D5A27;
    margin-bottom: 0.25rem;
}

.emergency-contact span {
    color: #666;
    font-size: 0.9rem;
}

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

.thanks-graphic {
    margin-top: 3rem;
}

.while-you-wait {
    padding: 3rem 0;
    background: #F8F9FA;
}

.while-you-wait h2 {
    text-align: center;
    color: #2D5A27;
    margin-bottom: 3rem;
}

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

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.suggestion-icon {
    margin-bottom: 1rem;
}

.suggestion-card h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
}

.suggestion-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Blog article specific */
.blog-article {
    padding: 2rem 0;
}

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

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #7FB069;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.article-header h1 {
    font-size: 3rem;
    color: #2D5A27;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-text {
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.article-text h2 {
    color: #2D5A27;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-text h3 {
    color: #2D5A27;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.article-text ul, .article-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.article-text blockquote {
    background: #F8F9FA;
    border-left: 4px solid #7FB069;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.article-text blockquote p {
    margin-bottom: 1rem;
    color: #555;
}

.article-text blockquote cite {
    font-style: normal;
    color: #7FB069;
    font-weight: 600;
}

.warning-box {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #B8860B;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin: 0;
}

.garden-calendar {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.garden-calendar th,
.garden-calendar td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.garden-calendar th {
    background: #7FB069;
    color: white;
    font-weight: 600;
}

.garden-calendar tr:nth-child(even) {
    background: #F8F9FA;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-articles,
.contact-cta,
.share-article {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.related-articles h3,
.contact-cta h3,
.share-article h3 {
    color: #2D5A27;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: block;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.related-item:hover {
    background: #E8F5E8;
}

.related-item h4 {
    color: #2D5A27;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.related-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-cta {
    text-align: center;
}

.contact-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background: #F8F9FA;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .certificates-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-signup .form-group {
        flex-direction: column;
    }
    
    .emergency-contacts {
        grid-template-columns: 1fr;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}