@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

.oa-wrapper-15548a29 {
    background-color: #081B33;
    padding: 80px 20px;
    color: #F5F1E8;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.oa-header-15548a29 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.oa-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #F5F1E8;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.oa-subheading {
    font-size: 18px;
    color: #D8D0C3;
    margin: 0;
    line-height: 1.6;
}

.oa-container-15548a29 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.oa-left-15548a29 {
    flex: 1 1 500px;
}

.oa-left-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #F5F1E8;
    margin: 0 0 20px 0;
}

.oa-left-body {
    font-size: 16px;
    color: #D8D0C3;
    line-height: 1.8;
    margin-bottom: 40px;
}

.oa-blocks-15548a29 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.oa-block-item {
    border-bottom: 1px solid rgba(200, 168, 107, 0.2);
    padding-bottom: 20px;
}

.oa-block-item:last-child {
    border-bottom: none;
}

.oa-block-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #C8A86B;
    margin: 0 0 10px 0;
}

.oa-block-item p {
    font-size: 16px;
    color: #D8D0C3;
    margin: 0;
    line-height: 1.6;
}

.oa-right-15548a29 {
    flex: 1 1 400px;
    padding-top: 20px;
}

.oa-timeline-15548a29 {
    position: relative;
    padding-left: 30px;
}

.oa-timeline-15548a29::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 1px;
    background-color: rgba(200, 168, 107, 0.5);
}

.oa-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.oa-timeline-item:last-child {
    margin-bottom: 0;
}

.oa-tl-marker {
    position: absolute;
    left: -42px;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #081B33;
    color: #C8A86B;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C8A86B;
    border-radius: 50%;
}

.oa-tl-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #F5F1E8;
    margin: 0 0 5px 0;
}

.oa-tl-content p {
    font-size: 16px;
    color: #D8D0C3;
    margin: 0;
}

/* Animations */
.oa-fade-up, .oa-timeline-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.oa-fade-up.oa-visible, .oa-timeline-step.oa-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .oa-main-title {
        font-size: 32px;
    }
    .oa-container-15548a29 {
        flex-direction: column;
        gap: 50px;
    }
    .oa-wrapper-15548a29 {
        padding: 60px 20px;
    }
}