:root {
    --primary-blue: #002d5b;
    --gold: #c5a059;
    --light-gray: #f4f7f9;
    --white: #ffffff;
    --text-main: #2d3436;
    --text-dim: #636e72;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

/* NAVIGATION */
nav {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.gold { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%;
    left: 0;
    border-radius: 4px;
    padding: 10px 0;
    border-top: 2px solid var(--gold);
}

.dropdown:hover .dropdown-content { display: block; }

.dropdown-content a {
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--gold);
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0, 45, 91, 0.8), rgba(0, 45, 91, 0.8)), 
                url('../images/kansas-bg.jpg') center/cover no-repeat fixed;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-content { max-width: 850px; }

.badge {
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin: 20px 0;
}

.highlight { color: #82ccdd; }

/* INTRO Section */
.intro {
    padding: 100px 20px;
    background-color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
}

.container-narrow { max-width: 800px; }

.container-narrow h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.container-narrow h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto;
}

.container-narrow strong {
    color: var(--primary-blue);
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
}

/* SERVICES */
.services {
    background-color: var(--light-gray);
    padding: 80px 20px;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-body { padding: 35px; }

.card-body i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.card-body h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover { background: #ad8b4a; }

.cta-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

footer {
    padding: 40px 20px;
    text-align: center;
    background: #eef2f5;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
}
