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

:root {
    /* Color Palette */
    --primary-green: #2d5016;
    --emerald-green: #50c878;
    --forest-green: #355e3b;
    --terracotta: #e2725b;
    --warm-grey: #8b7d6b;
    --gold: #d4af37;
    --silver: #c0c0c0;
    --cream: #f5f5dc;
    --off-white: #fafafa;
    --white: #ffffff;
    --black: #1a1a1a;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--warm-grey);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--terracotta), #d4614a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(226, 114, 91, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 114, 91, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--black);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-tertiary {
    background: var(--warm-grey);
    color: var(--white);
}

.btn-tertiary:hover {
    background: var(--black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 0;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: var(--warm-grey);
    font-weight: 300;
}

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

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(53, 94, 59, 0.6)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0px 0px 20px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0px 0px 15px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    line-height: 1.6;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0.5rem auto;
}

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

.section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--warm-grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Featured Listings */
.featured-listings {
    padding: var(--section-padding);
    background: var(--white);
}

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

.listing-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.listing-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.listing-card:hover .listing-image {
    transform: scale(1.05);
}

.listing-content {
    padding: 1.5rem;
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.listing-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.listing-location {
    color: var(--warm-grey);
    margin-bottom: 1rem;
}

.listing-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--warm-grey);
}

.listing-garden-feature {
    background: var(--emerald-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Snapshot */
.about-snapshot {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.about-text h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

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

/* CTA Section Button Overrides for Better Contrast */
.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--white), var(--cream));
    color: var(--primary-green);
    border: 2px solid var(--white);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--cream), var(--off-white));
    color: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--warm-grey);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--warm-grey);
}

.footer-bottom {
    border-top: 1px solid var(--warm-grey);
    padding-top: 1rem;
    text-align: center;
    color: var(--warm-grey);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-green);
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.newsletter-popup.show .newsletter-content {
    transform: scale(1);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--warm-grey);
}

.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.newsletter-decline {
    background: none;
    border: none;
    color: var(--warm-grey);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 1rem;
}

/* Chatbot */
.chatbot-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.chatbot-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1001;
    border: 1px solid rgba(45, 80, 22, 0.1);
    overflow: hidden;
}

.chatbot-window.show {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.1);
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.chatbot-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chatbot-header button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: linear-gradient(to bottom, var(--off-white), var(--white));
}

.chatbot-message {
    max-width: 80%;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.bot-message {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    align-self: flex-start;
    border: 1px solid rgba(45, 80, 22, 0.08);
    margin-right: 1rem;
}

.bot-message::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f8f9fa;
}

.user-message {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: #ffffff;
    align-self: flex-end;
    margin-left: 1rem;
    box-shadow: 0 3px 10px rgba(45, 80, 22, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message p {
    color: #ffffff !important;
    margin-bottom: 0;
}

.user-message::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--primary-green);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
    display: flex;
    gap: 0.5rem;
    background: var(--white);
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    background: var(--off-white);
    color: #2c3e50;
    transition: var(--transition-fast);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.chatbot-input input::placeholder {
    color: #6c757d;
}

.chatbot-input button {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: var(--white);
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
}

.chatbot-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.chatbot-input button:disabled {
    background: var(--warm-grey);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Typing indicator */
.typing-indicator {
    font-style: italic;
    opacity: 0.8;
    background: linear-gradient(135deg, #f1f3f4, #e8eaed) !important;
    color: #5a6c7d;
    border: 1px solid rgba(45, 80, 22, 0.05) !important;
}

.typing-indicator::before {
    border-right-color: #f1f3f4 !important;
}

.typing-indicator p {
    margin: 0;
    font-size: 0.85rem;
}

.typing-indicator p::after {
    content: '';
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0%, 33% { content: '.'; }
    34%, 66% { content: '..'; }
    67%, 100% { content: '...'; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .chatbot-window {
        width: calc(100% - 2rem);
        right: 1rem;
        left: 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
}



/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 var(--section-padding);
    background: var(--white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-green);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--forest-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-content h4 {
    color: var(--forest-green);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--forest-green);
}

.legal-content .contact-info {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-green);
}

.legal-content .contact-info p {
    margin-bottom: 0.5rem;
}

.legal-content .contact-info p:last-child {
    margin-bottom: 0;
}

.legal-content .contact-section {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.legal-content .contact-section h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.last-updated {
    color: var(--warm-grey);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content .contact-info {
        padding: 1rem;
    }
    
    .legal-content .contact-section {
        padding: 1.5rem;
    }
}

