.about-wrapper {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    background: rgba(0, 123, 255, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.25;
}

.about-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-banners-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.about-banner-card {
    width: 100%;
    border-radius: var(--radius-main);
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.95));
    border: 1.5px solid #bfdbfe;
    border-radius: var(--radius-main);
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
}

.about-cta-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-cta-text {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}

.btn-about-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-about-action:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.45);
    transform: translateY(-2px);
}

.btn-about-action:active {
    transform: scale(0.98);
}

@media (max-width: 640px) {
    .about-title {
        font-size: 22px;
    }
    .about-subtitle {
        font-size: 14px;
    }
    .about-banners-list {
        gap: 16px;
    }
    .about-cta-box {
        padding: 26px 18px;
    }
    .btn-about-action {
        width: 100%;
    }
}