.os-warning {
    overflow: hidden;
}

.os-warning-content {
    padding: 24px;
}

.os-warning-photo {
    margin: 0;
    padding: 0 24px 24px;
}

.os-warning-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 1px solid rgba(16, 32, 51, .10);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
}

.os-warning-photo figcaption {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #eef6ff;
    color: #365775;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}
.os-section {
    padding: 80px 0;
    background:
            radial-gradient(circle at top left, rgba(13, 110, 253, .08), transparent 35%),
            linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.os-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: .9rem;
    font-weight: 800;
}

.os-eyebrow i {
    font-size: 1.1rem;
}

.os-title {
    margin-bottom: 18px;
    color: #102033;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
}

.os-lead {
    color: #34495e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.75;
}

.os-section p {
    color: #5d6b7c;
    line-height: 1.75;
}

.os-trust-message {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    background: #eefaf3;
    border: 1px solid rgba(25, 135, 84, .18);
}

.os-trust-message i {
    flex: 0 0 auto;
    color: #198754;
    font-size: 1.7rem;
    margin-top: 2px;
}

.os-trust-message strong {
    display: block;
    color: #102033;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.os-trust-message span {
    display: block;
    color: #4d6175;
    line-height: 1.55;
}

.os-photo-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    border: 1px solid rgba(16, 32, 51, .08);
}

.os-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.os-photo-caption {
    padding: 20px;
    background: #ffffff;
}

.os-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff4e6;
    color: #a65300;
    font-size: .86rem;
    font-weight: 800;
}

.os-trust-badge i {
    color: #ff8a00;
}

.os-photo-caption strong {
    display: block;
    margin-bottom: 6px;
    color: #102033;
    font-size: 1.05rem;
    font-weight: 800;
}

.os-photo-caption span {
    display: block;
    color: #5d6b7c;
    font-size: .92rem;
    line-height: 1.5;
}

.os-photo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.os-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.os-btn:hover {
    transform: translateY(-2px);
}

.os-btn-call {
    color: #ffffff;
    background: linear-gradient(135deg, #198754, #0f6848);
    box-shadow: 0 10px 24px rgba(25, 135, 84, .25);
}

.os-btn-call:hover {
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(25, 135, 84, .32);
}

.os-btn-quote {
    color: #0d6efd;
    background: #eef6ff;
    border: 1px solid rgba(13, 110, 253, .18);
}

.os-btn-quote:hover {
    color: #0757c8;
    background: #e2f0ff;
}

@media (max-width: 991.98px) {
    .os-section {
        padding: 55px 0;
    }

    .os-photo-card {
        max-width: 520px;
        margin: 0 auto !important;
    }
}

@media (max-width: 575.98px) {
    .os-warning-content {
        padding: 18px;
    }

    .os-warning-photo {
        padding: 0 18px 18px;
    }

    .os-warning-photo img {
        border-radius: 16px;
    }
    .os-section {
        padding: 45px 0;
    }

    .os-title {
        font-size: 1.75rem;
    }

    .os-trust-message {
        padding: 15px;
        border-radius: 16px;
    }

    .os-photo-card {
        border-radius: 20px;
    }

    .os-photo-caption {
        padding: 16px;
    }

    .os-photo-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .os-btn {
        width: 100%;
    }
}