/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #595E49;      /* Intense Green */
    --color-primary-light: #808562; /* Green */
    --color-secondary: #C7B79F;    /* Oak */
    --color-text: #704F39;         /* Clay */
    --color-text-light: #8B7355;   /* Clay 70% */
    --color-background: #FFFFFF;    /* White */
    --color-background-alt: #F7F7F7; /* White 25% */
    --color-background-beige: #E8E3DD; /* Beige background */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--color-background-beige);
}

/* Header styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    margin-bottom: 30px;
}

.logo {
    text-align: center;
    position: relative;
    padding: 30px;
}

.logo-img {
    max-width: 260px;
    height: auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    border-radius: 50%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 15px rgba(112, 79, 57, 0.08);
}

.logo-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(112, 79, 57, 0.12);
}

.logo-text {
    position: relative;
    z-index: 1;
}

.logo-text h1 {
    color: var(--color-text);
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.logo-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #f0f0f0;
}

/* Tab styles */
.tabs {
    margin-top: 20px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background-color: var(--color-background-alt);
    color: var(--color-text);
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: var(--color-primary-light);
    color: var(--color-background);
}

.tab-button.active {
    background-color: var(--color-primary);
    color: var(--color-background);
}

/* Main content styles */
.tab-content {
    background-color: var(--color-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(89, 94, 73, 0.1);
}

.policy-section {
    display: none;
    padding: 30px;
}

.policy-section.active {
    display: block;
}

h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary-light);
}

h3 {
    color: var(--color-text);
    margin: 20px 0 10px;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    color: var(--color-text);
}

/* Footer styles */
footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 2px solid var(--color-primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact p {
    color: var(--color-text);
}

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

/* Responsive design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }

    .policy-section {
        padding: 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .contact {
        margin-bottom: 20px;
    }
} 