:root {
    --accent: #1e88e5;
    --dark: #1a1a1a;
    --light: #ffffff;
    --muted: #f5f7fb;
    --shadow: rgba(0, 0, 0, 0.12);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    color: var(--dark);
}

body {
    margin: 0;
    background: var(--muted);
}

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f1b2b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: var(--light);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8), rgba(26, 35, 126, 0.7));
}

.hero__content {
    position: relative;
    max-width: 760px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    background: var(--light);
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(30, 136, 229, 0.45);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.section + .section {
    margin-top: 4rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px var(--shadow);
    line-height: 1.6;
}

.timeline {
    position: relative;
    margin-top: 2rem;
    padding-left: 1rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(30, 136, 229, 0.3));
    border-radius: 999px;
}

.timeline__item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.timeline__badge {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(30, 136, 229, 0.35);
}

.timeline__content {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 18px 36px var(--shadow);
    flex: 1;
}

.timeline__content img {
    width: 100%;
    border-radius: 0.8rem;
    margin: 1rem 0;
    object-fit: cover;
    max-height: 260px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.map-link::before {
    content: "📍";
}

.footer {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark);
    color: var(--light);
}

@media (max-width: 720px) {
    .timeline::before {
        left: 20px;
    }

    .timeline__item {
        flex-direction: column;
        padding-left: 0;
        align-items: flex-start;
    }

    .timeline__badge {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}
