:root {
    --navy: #1B2B48; /* Matching the logo navy */
    --gold: #C5A059; /* Matching the logo gold */
    --white: #FFFFFF;
    --light-grey: #F4F6F8;
    --text-dark: #2D3436;
    --text-muted: #636E72;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header & Logo --- */
header {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    height: 65px; /* Adjust based on your logo file's dimensions */
    width: auto;
    display: block;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover { color: var(--gold); }

/* --- Hero Section --- */
.hero {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9fb 100%);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 25px; max-width: 850px; }
.subheadline { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 45px; max-width: 700px; }

/* --- Buttons --- */
.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 20px 36px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--navy);
    transition: 0.3s;
}

.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-secondary {
    color: var(--navy);
    padding: 20px 36px;
    text-decoration: underline;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid var(--gold);
    padding: 12px 24px;
    color: var(--navy);
    text-decoration: none;
}

/* --- Content Sections --- */
section { padding: 120px 0; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.accent { color: var(--gold); }

.risk-list { background: var(--navy); color: var(--white); padding: 50px; }
.risk-list h3 { color: var(--gold); margin-bottom: 25px; font-family: 'Inter'; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.risk-list ul { list-style: none; }
.risk-list li { margin-bottom: 18px; border-left: 3px solid var(--gold); padding-left: 20px; font-weight: 400; }

.services-section { background: var(--light-grey); }
.section-header-center { text-align: center; max-width: 800px; margin: 0 auto 70px; }
.section-header-center h2 { margin-bottom: 20px; font-size: 2.5rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }
.service-card { background: white; padding: 40px; border-bottom: 4px solid var(--gold); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card h4 { font-family: 'Inter'; font-size: 1.05rem; font-weight: 600; color: var(--navy); }

.diff-section { padding: 0; }
.diff-box { background: var(--navy); color: white; padding: 100px 40px; text-align: center; }
.diff-box h2 { color: var(--gold); margin-bottom: 30px; font-size: 2.5rem; }
.diff-box p { font-size: 1.25rem; max-width: 850px; margin: 0 auto 25px; opacity: 0.95; font-weight: 300; }

.client-grid { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; font-weight: 600; color: var(--navy); }

.about-text h2 { margin-bottom: 25px; }
.engagement-box { border: 1px solid var(--gold); padding: 50px; background-color: #fff; }
.engagement-box h3 { margin-bottom: 25px; font-size: 1.5rem; }
.engagement-box ul { list-style: none; }
.engagement-box li { margin-bottom: 15px; font-weight: 600; color: var(--navy); padding-left: 20px; position: relative; }
.engagement-box li::before { content: "•"; color: var(--gold); position: absolute; left: 0; font-size: 1.5rem; line-height: 1; }

.final-cta { text-align: center; background: var(--light-grey); }
.final-cta h2 { margin-bottom: 40px; font-size: 2.8rem; }

footer { padding: 80px 0; background: white; border-top: 1px solid #eee; text-align: center; font-size: 0.95rem; }
.copyright { margin-top: 25px; opacity: 0.5; }

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .grid, .services-grid, .client-grid, .check-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    nav { display: none; } /* Simplified for executive mobile view */
    section { padding: 80px 0; }
}
