﻿body {
    font-family: 'Poppins', sans-serif;
}

.about-container {
    width: min(92%, 1180px);
    margin: 0 auto;
}

.section-label {
    color: #f97316;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.center-label {
    display: block;
    text-align: center;
}

.section-heading {
    color: #0b1f4d;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin: 14px 0 44px;
}

.about-hero {
    padding: 70px 0;
    background: white;
}

.about-hero-grid,
.who-grid,
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-hero-content h1 {
    color: #0b1f4d;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 18px 0;
}

.hero-subtitle {
    color: #0b1f4d;
    font-size: 2rem;
    margin-bottom: 18px;
}

.hero-description {
    color: #42526b;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 36px;
}

.primary-button,
.secondary-button,
.cta-button {
    min-height: 56px;
    padding: 0 32px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.primary-button,
.cta-button {
    background: #f97316;
    color: white;
}

.secondary-button {
    border: 1px solid #0b1f4d;
    color: #0b1f4d;
}

.hero-image img,
.who-image img {
    width: 100%;
    border-radius: 18px;
}

.who-we-are,
.services-section,
.process-section {
    padding: 80px 0;
}

.who-content h2 {
    color: #0b1f4d;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 18px 0;
}

.orange-line {
    width: 70px;
    height: 5px;
    border-radius: 999px;
    background: #f97316;
    margin-bottom: 28px;
}

.who-content p {
    color: #42526b;
    line-height: 1.9;
    font-size: 1.08rem;
}

.services-grid,
.benefits-grid,
.process-grid {
    display: grid;
    gap: 26px;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    background: white;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0b1f4d;
    font-weight: 800;
    margin-bottom: 14px;
}

.service-card p {
    color: #42526b;
    line-height: 1.7;
}

.benefits-section {
    background: #06224b;
    padding: 80px 0;
}

.benefits-heading {
    color: white;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 16px 0 48px;
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 24px;
}

    .benefit-item:nth-child(3),
    .benefit-item:nth-child(6) {
        border-right: none;
    }

    .benefit-item h3 {
        color: white;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .benefit-item p {
        color: rgba(255,255,255,0.75);
        line-height: 1.7;
    }

.process-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.process-number {
    width: 70px;
    height: 70px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.process-item h3 {
    color: #0b1f4d;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-item p {
    color: #42526b;
    line-height: 1.7;
}

.bottom-cta {
    background: linear-gradient( 90deg, #ff7a00, #f97316 );
    padding: 55px 0;
}

    .bottom-cta h2 {
        color: white;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .bottom-cta p {
        color: white;
        font-size: 1.3rem;
    }

.cta-grid {
    align-items: center;
}

.cta-button {
    justify-self: end;
    background: #06224b;
}

@media (max-width: 950px) {
    .about-hero-grid,
    .who-grid,
    .cta-grid,
    .services-grid,
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-button {
        justify-self: start;
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 24px;
    }

        .benefit-item:last-child {
            border-bottom: none;
        }
}
