/* General Styles */
:root {
    --primary-blue: #002D62;
    --gold: #C5A059;
    --light-gray: #f4f4f4;
    --text-dark: #333;
}

body {
    font-family: 'Georgia', serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header & Navigation */
header {
    background: white;
    border-bottom: 4px solid var(--gold);
    padding: 1rem 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
}

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

nav a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1548625149-fc4a29cf7092?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Quick Actions Bar */
.quick-actions {
    background: var(--primary-blue);
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
}

.action-btn {
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

/* Content Sections */
.section {
    padding: 40px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

