
.about-section {
    max-width: 700px;
    margin: 5rem auto 6rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.about-section h2 {
    text-align: center;
    color: #356cb6;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    background: #f8fafc;
}

.about-table th, .about-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #e0e6ed;
    text-align: left;
    vertical-align: top;
}

.about-table th {
    width: 160px;
    background: #f0f4fa;
    color: #356cb6;
    font-weight: 600;
}

.about-table tr:last-child th,
.about-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .about-section {
        padding: 1rem;
    }
    .about-table th, .about-table td {
        padding: 0.7rem 0.4rem;
        font-size: 1rem;
    }
    .about-table th {
        width: 100px;
    }
}