body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f7f9fc;
    color: #142033;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}

.about-hero {
    padding: 140px 0 110px;
    background: linear-gradient(180deg, #edf5ff 0%, #f7f9fc 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.section-label {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2e83ff;
}

.about-hero-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 650;
    letter-spacing: -0.04em;
    color: #142033;
}

.about-hero-copy p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #415168;
    max-width: 700px;
}

.about-hero-card {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 18px 40px rgba(16, 42, 84, 0.08);
}

.about-hero-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #33445d;
    line-height: 1.9;
    font-size: 16px;
}

.about-story {
    padding: 110px 0;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.about-image-box {
    background: #f7f9fc;
    border: 1px solid #dbe7f6;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(16, 42, 84, 0.08);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.about-story-copy h2,
.values-heading h2,
.about-commitment-copy h2,
.cta-box h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #142033;
}

.about-story-copy p,
.about-commitment-copy p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #415168;
}

.about-values {
    padding: 110px 0;
    background: #f7f9fc;
}

.values-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 24px;
    padding: 28px;
    min-height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 53, 106, 0.08);
    border-color: #bfd8f7;
}

.value-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    color: #142033;
}

.value-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #52627a;
}

.about-commitment {
    padding: 110px 0;
    background: linear-gradient(180deg, #edf5ff 0%, #f7f9fc 100%);
}

.about-commitment-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.cta-section {
    padding: 110px 0;
    background: #ffffff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, #0d2e63 0%, #1f5db8 100%);
    border-radius: 32px;
    padding: 44px;
    color: #ffffff;
}

.cta-box h2,
.cta-box p,
.cta-box .section-label {
    color: #ffffff;
}

.cta-box p {
    margin: 0;
    max-width: 650px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: #2e83ff;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(46, 131, 255, 0.28);
}

.btn-primary:hover {
    background: #1f73ee;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
    .about-hero-grid,
    .about-story-grid,
    .about-commitment-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 1200px);
    }

    .about-hero,
    .about-story,
    .about-values,
    .about-commitment,
    .cta-section {
        padding: 80px 0;
    }

    .about-hero-copy h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .about-story-copy h2,
    .values-heading h2,
    .about-commitment-copy h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box img {
        min-height: 300px;
    }

    .cta-box {
        padding: 30px 24px;
        border-radius: 24px;
    }
}
