.about-us-page {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: 80vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-content-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    color: #1a1a1a;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.about-section p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-page {
        padding: 40px 0;
    }

    .about-content-wrapper {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }
}