/* Content Image Banner - Reusable Component */
.content-image-banner {
    background: linear-gradient(135deg, #fef9fb 0%, #f9f9fe 25%, #fbf9fe 50%, #fef9fc 75%, #fef9fb 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 500px;
}

.content-image-banner-text {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: var(--color-text);
}

.content-image-banner-text h2 {
    color: var(--color-text);
}

.content-image-banner-text p {
    color: var(--color-text);
}

.content-image-banner-image {
    flex: 0 0 auto;
    align-self: flex-end;
    max-width: 40%;
    position: relative;
    z-index: 1;
}

.content-image-banner-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

/* Responsive */
@media (max-width: 991px) {
    .content-image-banner {
        flex-direction: column;
        min-height: auto;
    }

    .content-image-banner-text {
        padding: 40px;
        width: 100%;
    }

    .content-image-banner-image {
        max-width: 100%;
        width: 100%;
        align-self: center;
    }
}

@media (max-width: 767px) {
    .content-image-banner-text {
        padding: 30px 20px;
    }
}

/* Timeline Component */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
}

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

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

.timeline-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(42, 124, 174, 0.3);
}

.timeline-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--color-border-light);
    transition: transform 0.2s, border-color 0.2s;
}

.timeline-card:hover {
    transform: translateX(5px);
    border-color: var(--color-border);
}

.timeline-card h3 {
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.timeline-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}

/* Responsive Timeline */
@media (max-width: 767px) {
    .timeline {
        padding-left: 50px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-number {
        left: -50px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 18px;
    }

    .timeline-card p {
        font-size: 14px;
    }
}
