main {
    background-color: #fff6f6;
    min-height: 100vh;
}

* {
    font-size: 14px;
    /* base size */
}

h1 {
    font-size: 1.7rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.2rem;
}



.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-attachment: fixed; */
    min-height: 400px;
    align-content: center;
}

.hero h1 {
    font-size: 40px;
    color: white;
}

/* Timeline container */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    margin: 2rem 0;
}

/* Timeline step container */
.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Circle indicator */
.inner-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    position: relative;
    z-index: 2;
}

/* Active timeline step */
.timeline-step.active .inner-circle {
    background-color: #007bff;
}

/* Timeline content (text) */
.timeline-content {
    text-align: center;
    margin-top: 1rem;
}

.timeline-content .h6 {
    margin: 0;
}

/* Carets between steps */
.caret {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #e0e0e0;
}

.caret-right {
    right: -20px;
}

.caret-left {
    left: -20px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-step {
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .timeline-content {
        text-align: left;
        margin-left: 1rem;
    }

    .caret-left,
    .caret-right {
        display: none;
        /* Hide horizontal carets on mobile */
    }
}

