/* About page - consistent with privacy and terms */

.about-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 60%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.about-content {
    background: #ffffff;
    padding: 3rem 0;
}

.about-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-content ul li {
    font-size: 1rem;
    color: #475569;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.about-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.2rem;
}

.about-content ul li strong {
    color: #0f172a;
}

@media (max-width: 767px) {
    .about-hero {
        padding: 2.5rem 0 2rem;
    }
    .about-hero h1 {
        font-size: 1.75rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
    .about-content {
        padding: 2rem 0;
    }
    .about-content h4 {
        font-size: 1.25rem;
    }
}