.about-container {
    width: 100%;
}

.about-hero {
    padding: 96px 24px;
    background: #ffffff;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.hero-logo {
    width: 420px;
    max-width: 100%;
    height: auto;
}

.hero-text {
    max-width: 520px;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-logo {
        width: 360px;
    }

    .hero-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-logo {
        width: 260px;
    }

    .hero-text {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .about-hero {
        padding: 64px 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 220px;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}

.about-section,
.about-features,
.about-why {
    width: 100%;
    padding: 80px 24px;
}

.about-section h2,
.about-features h2,
.about-why h2 {
    max-width: 1100px;
    margin: 0 auto 16px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: #2a2929;
}

.about-section p,
.about-features p,
.about-why p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.about-section {
    background: #eeeeee;
}

.about-features {
    background: #ffffff;
}

.about-why {
    background: #eeeeee;
}

.features-grid {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 0;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 1.4rem;
    color: #6366f1;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
}

.about-stats {
    width: 100%;
    padding: 80px 24px;
    background: #ffffff
}

.about-stats ul {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-stats li {
    flex: 1;
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 38px;
    font-weight: 600;
    color: #1e40ff;
    margin-bottom: 6px;
}

.about-stats span {
    font-size: 0.95rem;
    color: #6b7280;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-stats ul {
        flex-direction: column;
        gap: 32px;
    }

    .about-stats strong {
        font-size: 34px;
    }
}