.osow-page {
    padding-bottom: 96px;
}

.osow-page__hero {
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

.osow-page__hero-copy {
    flex: 1 1 420px;
    min-width: 0;
}

.osow-page__hero-media {
    flex: 1 1 360px;
    min-width: 0;
}

.osow-page__hero-picture {
    display: block;
    width: 100%;
}

.osow-page__hero-banner {
    display: none;
}

.osow-page__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(7, 20, 38, 0.14);
    object-fit: cover;
}

.osow-page__intro {
    font-size: var(--eighteen);
    line-height: 1.65;
    color: rgba(40, 40, 40, 0.75);
    margin: 0 0 28px;
    max-width: 920px;
}

.osow-page__cta-row {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.osow-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(7, 20, 38, 0.12);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.osow-page__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.osow-page__cta-icon svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.osow-page__cta-text {
    min-width: 0;
}

.osow-page__cta--primary {
    background: var(--brandGradient);
    color: var(--white, #fff);
}

.osow-page__cta--primary:hover {
    color: var(--white, #fff);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(7, 20, 38, 0.18);
}

.osow-page__cta--primary:active {
    transform: translateY(0);
}

.osow-page__cta--secondary {
    background: var(--white, #fff);
    color: var(--brandGray, #1e4d82);
    border-color: rgba(30, 77, 130, 0.22);
}

.osow-page__cta--secondary .osow-page__cta-icon {
    background: rgba(30, 77, 130, 0.08);
    color: var(--brandGray, #1e4d82);
}

.osow-page__cta--secondary:hover {
    border-color: var(--brandGray, #1e4d82);
    color: #163a63;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(7, 20, 38, 0.14);
}

.osow-page__cta--inline {
    margin: 12px 0 28px;
}

.osow-page__table-wrap {
    margin: 1.5rem 0 2rem;
}

.osow-page__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--sixteen, 16px);
    color: rgba(40, 40, 40, 0.85);
}

.osow-page__table th,
.osow-page__table td {
    border: 1px solid rgba(30, 77, 130, 0.18);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.osow-page__table thead th {
    background: rgba(30, 77, 130, 0.08);
    font-weight: 600;
    color: var(--black, #282828);
}

.osow-page__table tbody tr:nth-child(even) {
    background: rgba(30, 77, 130, 0.03);
}

.osow-page__bundle {
    margin-top: 2rem;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(30, 77, 130, 0.06);
    border: 1px solid rgba(30, 77, 130, 0.12);
    font-family: 'Inter-SemiBold', sans-serif;
    color: rgba(40, 40, 40, 0.9);
}

@media (max-width: 768px) {
    .osow-page {
        padding-bottom: 48px;
    }

    .osow-page .aboutus_info_title {
        margin-bottom: 12px;
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        line-height: 1.2;
    }

    .osow-page-wrap .page_breadcrumb_block {
        padding: 10px 0 0;
    }

    .osow-page .aboutus_info_section {
        margin: 0 0 40px;
    }

    .osow-page__hero-banner {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 0;
        overflow: hidden;
    }

    .osow-page__hero-banner .osow-page__hero-picture,
    .osow-page__hero-banner .osow-page__hero-image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .osow-page__hero-banner .osow-page__hero-image {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        box-shadow: none;
    }

    .osow-page__hero-media--desktop {
        display: none;
    }

    .osow-page__hero {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
    }

    .osow-page__hero-copy {
        padding-top: 0;
    }

    .osow-page__hero-media {
        display: none;
    }

    .osow-page__intro {
        font-size: 15px;
        line-height: 1.55;
        margin: 0 0 14px;
    }

    .osow-page__cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .osow-page__cta {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
        justify-content: flex-start;
    }

    .osow-page__cta-icon {
        width: 32px;
        height: 32px;
    }

    .osow-page__cta--inline {
        margin: 8px 0 18px;
        width: 100%;
        justify-content: center;
    }

    .osow-page .aboutus_info_content {
        font-size: 15px;
        line-height: 1.6;
    }

    .osow-page .aboutus_info_content p {
        margin: 0 0 0.85em;
    }

    .osow-page .aboutus_info_content h2,
    .osow-page .aboutus_info_content h3 {
        margin: 1.1em 0 0.4em;
    }

    .osow-page .aboutus_info_content h2 {
        font-size: 1.15rem;
    }

    .osow-page .aboutus_info_content h3 {
        font-size: 1rem;
    }

    .osow-page .aboutus_info_content ul,
    .osow-page .aboutus_info_content ol {
        margin: 0.45em 0 0.75em;
        padding-left: 1.15em;
    }

    .osow-page__table-wrap {
        margin: 0.85rem 0 1.1rem;
        overflow: visible;
    }

    .osow-page__table {
        min-width: 0;
    }

    .osow-page__table thead {
        display: none;
    }

    .osow-page__table tbody tr {
        display: block;
        margin-bottom: 12px;
        padding: 14px 16px;
        border: 1px solid rgba(30, 77, 130, 0.16);
        border-radius: 12px;
        background: var(--white, #fff);
        box-shadow: 0 4px 14px rgba(7, 20, 38, 0.05);
    }

    .osow-page__table tbody tr:last-child {
        margin-bottom: 0;
    }

    .osow-page__table td {
        display: block;
        border: none;
        padding: 0 0 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .osow-page__table td:last-child {
        padding-bottom: 0;
    }

    .osow-page__table td:first-child {
        font-family: 'Inter-SemiBold', sans-serif;
        font-size: 15px;
        color: var(--black, #152032);
        padding-bottom: 12px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(30, 77, 130, 0.1);
    }

    .osow-page__table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-family: 'Inter-SemiBold', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--brandGray, #1e4d82);
        margin-bottom: 4px;
    }

    .osow-page__bundle {
        margin-top: 1.1rem;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .osow-page .aboutus_info_section {
        margin: 0 0 32px;
    }

    .osow-page__hero {
        margin-bottom: 16px;
    }

    .osow-page__cta {
        padding: 11px 16px;
    }
}
