/* --- Base Reset & Variables --- */
:root {
    --bg-color: #34260B;
    --accent-color: #C77615;
    --text-color: #FFFFFF;
    --text-muted: #e0e0e0;
    --font-main: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html,
body {
    height: 100%;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    /* Ensure no gradients and solid color */
    background-image: none;
}

/* --- Layout --- */
/* --- Layout --- */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; Removed to allow natural flow with top banner */
    min-height: 100vh;
}

.top-banner {
    width: 100%;
    background-color: #FFFFFF;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    /* Optional: shadow for separation */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem 2rem 2rem;
    text-align: center;
    /* Center all information */
    animation: fadeIn 0.8s ease-out;
}

/* --- Header --- */
.header {
    /* Removed margin-bottom as it's handled by top-banner padding/margin */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    /* Removed drop-shadow as it might look weird on white if not tuned */
    filter: none;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--accent-color);
    /* Orange will pop on white */
    margin: 0;
}

.title-initial {
    font-size: 1.3em;
}

/* --- Details --- */
.details {
    margin-bottom: 4rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.details strong {
    color: var(--text-color);
}

.details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.details a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- Documents --- */
.documents {
    margin-bottom: 4rem;
}

.documents h2 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.documents ul {
    list-style: none;
}

.documents li {
    margin-bottom: 1rem;
}

.documents a {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.documents a:hover {
    border-color: var(--accent-color);
    background-color: rgba(199, 118, 21, 0.1);
    /* transparent accent */
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}