/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 18px;
    background: #e6f0ff;
    color: #0056b3;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-content .btn:hover {
    background: #003f85;
    transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {

    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }

}