/* ==========================================================================
   Basic Reset & Typography
   ========================================================================== */

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ==========================================================================
   Layout / Container
   ========================================================================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: #1a3c6d;
    color: white;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.site-header .logo a {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    background: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a3c6d;
}

.lead {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #444;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a3c6d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0f2550;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.service-item h3 {
    color: #1a3c6d;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */

.experience {
    background: #f8f9fa;
    padding: 60px 0;
}

.lead-experience {
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #1a3c6d;
}

.experience-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.experience-list li {
    margin: 1.3rem 0;
    font-size: 1.15rem;
    position: relative;
    padding-left: 2rem;
}

.experience-list li:before {
    content: "•";
    color: #2e7d32;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */

.contact-cta {
    background: #1a3c6d;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.email-prompt {
    font-size: 1.3rem;
    margin-top: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
}

.site-footer a {
    color: #aaa;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .lead     { font-size: 1.2rem; }
    .hero     { padding: 60px 0 40px; }
}