* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.about-section {
    padding: 60px 20px;
    background: #fff;
}

.title {
    text-align: center;
    font-size: 44px;
    color: #a00024;
    text-shadow: 0 3px 3px rgba(0, 0, 0, .25);
    margin-bottom: 30px;
}

.event-container {
    background: #fff1e2;
    max-width: 1200px;
    margin: auto;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .2);
}

.subtitle {
    text-align: center;
    color: #a00024;
    margin-bottom: 20px;
    font-size: 16px;
}

.date-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 12%;
    gap: 25px;
    color: #a00024;
    font-size: 16px;
}

.date-row .active {
    width: 38px;
    height: 38px;
    background: #a00024;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.month {
    margin-left: 10px;
    font-size: 14px;
}

.timeline {
    position: relative;
    width: 700px;
    margin: 10px auto 40px;
    padding-top: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -20px;
    bottom: 0;
    width: 3px;
    background: #a00024;
    transform: translateX(-50%);
}


.timeline-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    margin: 30px 0;
    position: relative;
}

.dot {
    width: 14px;
    height: 14px;
    background: #a00024;
    border-radius: 50%;
    margin: auto;
    z-index: 2;
}

.event {
    color: #a00024;
    font-size: 15px;
}

.event.left {
    text-align: right;
    padding-right: 15px;
}

.event.right {
    text-align: left;
    padding-left: 15px;
}

.text strong {
    font-weight: 600;
}

.text.small {
    font-size: 14px;
    line-height: 1.6;
}

.empty {
    width: 100%;
}

.contact-btn {
    margin: 40px auto 0;
    width: 200px;
    background: #a00024;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

.contact-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .event-container {
        padding: 40px 20px;
    }

    .date-row {
        padding-left: 125px;
        gap: 15px;
    }

    .timeline {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }

    .title {
        font-size: 28px;
    }

    .event-container {
        padding: 30px 0px;
    }

    .date-row {
        gap: 7px;
        flex-wrap: wrap;
        padding-left: 80px;
    }

    .month {
        margin-left: 0px;
        font-size: 11px;
    }

    .text.small {
        font-size: 12px;
    }

    .date-row span:not(.month) {
        font-size: 13px;
    }

    .date-row .active {
        width: 32px;
        height: 32px;
    }

    .timeline {
        width: 100%;
        margin-top: 0px;
    }

    .timeline::before {
        left: 50%;
        top: -5px;
    }

    .timeline-row {
        grid-template-columns: 1fr 40px 1fr;
        display: grid;
        margin: 25px 0;
    }

    .dot {
        margin: auto;
    }

    .event {
        width: 100%;
        font-size: 13px;
    }

    .event.left {
        text-align: right;
        padding-right: 0px;
        padding-left: 0;
    }

    .event.right {
        text-align: left;
        padding-left: 0px;
        padding-right: 0;
    }

    .empty {
        display: block;
    }

    .text {
        font-size: 13px;
    }
}