/* About Us Page Styles */

.about-section {
    background: #D5EBE4;
    padding: 60px 20px;
    min-height: 60vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: left;
}

.about-content {
    margin-bottom: 50px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.why-choose-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 50px;
}

.reasons-list {
    margin-bottom: 40px;
}

.reason-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.reason-number {
    font-weight: 600;
    color: #1a1a1a;
    flex-shrink: 0;
}

.reason-text {
    flex: 1;
}

.closing-statement {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-top: 40px;
    font-weight: 500;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-choose-title {
        font-size: 24px;
        margin-top: 40px;
    }

    .about-content p,
    .reason-item,
    .closing-statement {
        font-size: 14px;
    }
}