:root {
    --navy: #1f3556;
    --gold: #c89b3c;
    --bg: #faf8f3;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Segoe UI, Arial, sans-serif;
    background: var(--bg);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at bottom */
}

header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.wrap {
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Increased logo size from 70px to 100px */
.logo {
    height: 200px;
    width: auto;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

.hero {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(#fff, #f8f5ee);
}

.hero h1 {
    font-size: 3rem;
    color: var(--navy);
}

.btn {
    background: var(--gold);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

section {
    padding: 60px 0;
    flex: 1; /* Pushes footer down */
}

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

.card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

h1, h2, h3 { color: var(--navy); }

footer {
    background: var(--navy);
    color: #fff;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav { flex-direction: column; text-align: center; }
    nav a { margin: 10px; display: block; }
}