:root {
    --primary-color: #A34A28; /* Warm Brown/Terracotta for theme */
    --secondary-color: #F4EADF; /* Light Cream/Off-White */
    --accent-color: #4C721D; /* Deep Green for accents */
    --dark-color: #333333;
    --light-color: #ffffff;
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;
    --max-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--light-color);
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Mobile Menu Button (Advanced CSS for responsiveness) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--secondary-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section p, .footer-section a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Utility Classes */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.btn:hover {
    background: var(--accent-color);
}

.section-padding {
    padding: 60px 0;
}

/* --- Responsive Design (Advanced CSS: Media Queries) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: var(--dark-color);
        display: none;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
        width: 90%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

/* Page Specific Content Styles (Applies to all) */
.content-section {
    padding: 40px 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

/* Policy Page Styles */
.policy-content h3 {
    color: var(--accent-color);
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-content p, .policy-content ul {
    margin-bottom: 15px;
    font-size: 1rem;
    padding-left: 20px;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 40px;
}