@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== ABOUT SECTION ===== */
.about-section {
    width: 100%;
    background: #ffffff;
    padding: clamp(60px, 6vw, 120px) 0;
}

.about-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(40px, 6vw, 120px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Header */
.about-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #004882;
}

.about-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.4;
    color: #252525;
    margin: 0;
}

/* Images */
.about-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: clamp(380px, 36vw, 580px);
}

.about-img-small {
    width: 479px;
    height: 100%;
    border-radius: 20px;
    flex-shrink: 0;
}

.about-img-large {
    flex: 1;
    height: 100%;
    border-radius: 20px;
}

/* Text */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.about-text p {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #252525;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-inner {
        padding: 0 40px;
    }

    .about-images {
        height: auto;
        flex-direction: column;
    }

    .about-img-small,
    .about-img-large {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-inner {
        padding: 0 24px;
        gap: 24px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-img-small,
    .about-img-large {
        height: 220px;
    }
}
/* ===== LICENSED / BONDED / INSURED BADGES ===== */
.about-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #f8f9fb;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 40px;
    box-sizing: border-box;
    gap: 20px;
}

.about-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.about-badge svg {
    flex-shrink: 0;
}

.about-badge-title {
    font-family: 'Michroma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #252525;
}

.about-badge-sub {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
}

.about-badge-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-badges {
        flex-direction: column;
        padding: 28px 24px;
        gap: 24px;
    }

    .about-badge-divider {
        width: 60px;
        height: 1px;
    }
}