/* Learn-more pages styles extracted from offering.css */

.offering-page {
    margin-top: 0;
    min-height: 100vh;
}

.offering-bg-white {
    width: 100%;
    background: var(--bg-primary);
}

.offering-bg-grey {
    width: 100%;
    background: var(--bg-secondary);
}

.offering-section {
    padding: 120px 24px;
    max-width: none;
    margin: 0;
}

.offering-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offering-cta-banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 64px 24px;
}

.offering-cta-banner-card {
    width: 100%;
    max-width: 85%;
    padding: 56px 48px;
    background: #0d4a5c;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

html[data-theme="light"] .offering-cta-banner-card {
    background: #0d4a5c;
    color: #ffffff;
}

html[data-theme="dark"] .offering-cta-banner-card {
    background: linear-gradient(135deg, #c9f1f5 0%, #ade4eb 100%);
    color: #05232b;
}

.offering-cta-banner-title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
    color: #fff;
}

html[data-theme="dark"] .offering-cta-banner-title,
html[data-theme="dark"] .offering-cta-banner-text {
    color: #05232b;
}

.offering-cta-banner-text {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 28px;
    line-height: 1.55;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.offering-cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.offering-cta-banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
    color: #1a1a1a;
}

[data-theme="dark"] .offering-cta-banner-btn {
    background: #0d4a5c;
    color: #ffffff;
}

[data-theme="dark"] .offering-cta-banner-btn:hover {
    background: #083847;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .offering-section {
        padding: 48px 16px;
    }

    .offering-cta-banner-card {
        max-width: 100%;
        padding: 36px 24px;
    }
}
