/* Auxiliary Pages Styles */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FEFEFE;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Color Variables */
:root {
    --moss-green: #4A5D23;
    --light-green: #7FB069;
    --persimmon-orange: #FF6B35;
    --kraft-beige: #F5F1E8;
    --warm-white: #FEFEFE;
    --charcoal: #2C2C2C;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--moss-green);
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #919191;
}

/* Header */
.header {
    background: var(--warm-white);
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--moss-green);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--kraft-beige);
    color: var(--persimmon-orange);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 0;
    background: var(--warm-white);
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--kraft-beige);
    border-radius: 12px;
}

.content-block h2 {
    color: var(--moss-green);
    border-bottom: 2px solid var(--persimmon-orange);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.content-with-image,
.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.text-content {
    padding-right: 1rem;
}

.image-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
}

.content-placeholder {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--kraft-beige), #E8E4D9);
    border: 2px dashed var(--light-green);
    border-radius: 12px;
    text-align: center;
    color: var(--moss-green);
    font-size: 1.1rem;
}

.content-placeholder p {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--moss-green);
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .brand-name {
    color: white;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--persimmon-orange);
}

.footer-copyright {
    color: #fff;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .text-content {
        padding-right: 0;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block {
        padding: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}