/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-main: #49adbd;
    --brand-accent: #fccc40;
    --ink: #16343a;
    --soft-bg: #f5fbfcb6;
    --paper: #ffffff;
}

body {
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: linear-gradient(180deg, #f9fcfd 0%, #eef7f8 100%);
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


a {
    color: #0b6a7c;
}

a:hover {
    color: #084d59;
}

/* HEADER */
.header {
    background: linear-gradient(90deg, #3a9cac 0%, var(--brand-main) 100%);
    color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(19, 73, 82, 0.18);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    height: 40px;
    margin-right: 12px;
    position: relative;
    margin-top: -10px;
}

.header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.header a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 700;
}

.header a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* HERO */
.hero {
    background: var(--brand-main);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero.small {
    padding: 40px 0;
}

.hero.small p {
    margin-top: 10px;
    opacity: 0.95;
}

.hero-home {
    min-height: 56vh;
    display: flex;
    align-items: center;    
    background-size: cover;
    background-position: 50% 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(19, 66, 74, 0.86), rgba(73, 173, 189, 0.64));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(252, 204, 64, 0.18);
    border: 1px solid rgba(252, 204, 64, 0.5);
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

.hero p {
    margin-top: 16px;
    font-size: 1.1rem;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--brand-accent);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover{
    color: lightgray;
}

/* SECTIONS */
.section {
    padding: 30px 0 10px 0;
}

.section.light {
    background: var(--soft-bg);
}

.section h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.95rem;
    color: #13424a;
    margin-bottom: 12px;
    margin-top: 12px;
}

.section p,
.section li {
    font-size: 1.02rem;
}

.section p {
    max-width: 850px;
}

.section ul {
    margin-top: 10px;
    padding-left: 24px;
}

.section li + li {
    margin-top: 8px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* CARDS */
.card {
    background: var(--paper);
    border: 1px solid #d9ecef;
    padding: 20px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(27, 66, 73, 0.08);
}

.card h3 {
    font-family: "Space Grotesk", sans-serif;
    color: #154c56;
    margin-bottom: 8px;
}

.contact-card {
    margin-top: 12px;
    background: #f8fdfe;
    border: 1px solid #b7dde3;
    border-left: 6px solid var(--brand-accent);
    border-radius: 12px;
    padding: 16px;
}

.contact-card p + p {
    margin-top: 8px;
}

/* FOOTER */
.footer {
    background: #173e45;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 760px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }

    .header nav a {
        margin: 0 8px;
    }

    .hero {
        padding: 68px 0;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 46px 0;
    }

    .section h2 {
        font-size: 1.6rem;
    }
}