body {
    font-family: "Roboto", sans-serif;
    margin: 0;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 60vh;
    background: url('/assets/images/about-image.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.95;
}

/* ================= CONTACT ================= */
.contact-section {
    background: #f8f9fa;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: "";
    width: 200px;
    height: 3px;
    background: #000;
    display: block;
    margin-top: 6px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ================= TIMELINE ================= */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.timeline .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
}

.timeline .line {
    width: 2px;
    height: 150px;
    background: #000;
    margin-top: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }
}