:root {
    --bg-light: #f5f2ed;
    --brand-beige: #dbd2c3;
    --text-dark: #4a4540;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Common container style for a cohesive look */
.header, .navbar, .main, .footer {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
    box-sizing: border-box;
}

.header {
    height: 450px;
    background-color: var(--brand-beige);
    /* Subtle gradient adds a premium feel without being flashy */
    background: linear-gradient(145deg, #e6ded0, #c4bcaf);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.navbar {
    height: 60px;
    border-bottom: 1px solid var(--brand-beige); /* Thin line instead of thick border */
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 600;
}

.main {
    min-height: 600px;
    background-color: #ffffff; /* White card on beige background creates depth */
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(74, 69, 64, 0.05);
    text-align: center;
}

.footer {
    height: 180px;
    background-color: var(--text-dark);
    color: var(--brand-beige);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

