body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
    background-color: #fafaf8;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #2d5016;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

h5 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

a {
    color: #5a8c3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3d5c28;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

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

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d5016;
}

nav a:hover {
    color: #5a8c3a;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #2d5016;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 80, 22, 0.95);
    z-index: 99;
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #f5f5f0;
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: #d4e8c1;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8ede1 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    animation: fadeIn 0.8s ease-in;
}

.hero p {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeIn 0.8s ease-in 0.2s backwards;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #5a8c3a;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #3d5c28;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-light {
    background-color: #fff;
}

.section-accent {
    background-color: #f0f4e8;
}

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

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Seasonal Care Grid */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.seasonal-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.6s ease-out;
}

.seasonal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.seasonal-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
}

/* Maintenance Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-box {
    background-color: #f9fbf5;
    padding: 1.5rem;
    border-left: 4px solid #5a8c3a;
    border-radius: 4px;
}

.tip-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.tip-box p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Plant Selection Grid */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plant-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.plant-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

@media (max-width: 768px) {
    .plant-grid {
        grid-template-columns: 1fr;
    }
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tool-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tool-card ul {
    list-style: none;
    color: #666;
}

.tool-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tool-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8c3a;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: #f0f4e8;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    color: #2d5016;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-detail a {
    color: #5a8c3a;
}

.contact-detail a:hover {
    color: #3d5c28;
}

/* Forms */
.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a8c3a;
    box-shadow: 0 0 0 3px rgba(90, 140, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.form-consent a {
    color: #5a8c3a;
}

.form-consent a:hover {
    color: #3d5c28;
}

.form-submit {
    width: 100%;
    background-color: #5a8c3a;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.form-submit:hover {
    background-color: #3d5c28;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: #2d5016;
    color: #f5f5f0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer p {
    color: #d4e8c1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #d4e8c1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: #d4e8c1;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #b8d4a8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2d5016;
    color: #f5f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 98;
    display: none;
}

.cookie-banner.active {
    display: block;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #f5f5f0;
}

.cookie-banner a {
    color: #d4e8c1;
}

.cookie-banner a:hover {
    color: #fff;
}

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

.cookie-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.cookie-accept {
    background-color: #5a8c3a;
    color: white;
}

.cookie-accept:hover {
    background-color: #7ba850;
}

.cookie-reject {
    background-color: transparent;
    color: #d4e8c1;
    border: 1px solid #d4e8c1;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

.max-width-700 {
    max-width: 700px;
    margin: 0 auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .seasonal-grid {
        gap: 1.5rem;
    }

    .tips-grid {
        gap: 1.5rem;
    }

    .plant-grid {
        gap: 1.5rem;
    }

    .tools-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 0;
    }

    section {
        padding: 2.5rem 0;
    }

    .seasonal-card,
    .plant-item,
    .tool-card {
        padding: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        gap: 1.5rem;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Print Styles */
@media print {
    header,
    .cookie-banner,
    .burger-menu {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    a {
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}