:root {
    --primary: #0f4c81;
    --primary-dark: #0a3559;
    --accent: #27a7d8;
    --light: #f4f8fb;
    --white: #ffffff;
    --dark: #1d2a35;
    --gray: #5d6b75;
    --border: #dbe5ec;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.logo-image {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav a {
    color: var(--gray);
    font-weight: 600;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    color: var(--white);
    background:
        linear-gradient(rgba(10, 53, 89, 0.92), rgba(15, 76, 129, 0.88)),
        radial-gradient(circle at top right, #27a7d8, #0a3559);
    padding: 110px 0 100px;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: #bdeaff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: #e4f4fb;
    max-width: 680px;
    margin-bottom: 32px;
}

.button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 13px 23px;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
    background: #168fbe;
    transform: translateY(-2px);
}

.button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

section {
    padding: 85px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.section-heading h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--gray);
    font-size: 1.05rem;
}

.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 18px;
}

.quote-card {
    background: var(--white);
    border-left: 5px solid var(--accent);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.09);
}

.quote-card p {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 76, 129, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e3f5fb;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-options {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.service-options li {
    position: relative;
    padding-left: 20px;
}

.service-options li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-options a {
    color: var(--primary);
    font-weight: 600;
}

.service-options a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.experience {
    background: var(--primary-dark);
    color: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.experience h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.experience p {
    color: #d9eaf3;
}

.experience-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.experience-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    padding: 18px 20px;
    border-radius: 6px;
}

.experience-list strong {
    display: block;
    color: #8edcf4;
    margin-bottom: 4px;
}

.contact {
    text-align: center;
    background: var(--light);
}

.contact h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.contact p {
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto 25px;
}

footer {
    background: #081f34;
    color: #c8d8e3;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 800px) {
    .nav {
        flex-direction: column;
        justify-content: center;
        padding: 17px 0;
    }

    nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 0;
    }

    .about-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .button {
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }

    .button.secondary {
        margin-left: 0;
    }

    section {
        padding: 60px 0;
    }
}
