/* ========================================
   CLEAN ABOUT US SECTION STYLES
   Modern, Centered, Fully Responsive
   ======================================== */

/* About Us Section */
.about-section-clean {
    /* Light pastel background - soft pink/neutral tint */
    background: linear-gradient(135deg, #fef5f8 0%, #fef9f5 50%, #f8fafe 100%);
    padding: 5rem 0;
    text-align: center;
}

/* About Content Container */
.about-content-clean {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* About Title - Centered */
.about-title-clean {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    letter-spacing: -0.025em;
    text-align: center;
}

/* About Text Paragraphs - Clean, Readable */
.about-text-clean {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.8;
    /* Larger line-height for readability */
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.about-text-clean:last-of-type {
    margin-bottom: 2.5rem;
}

/* About Button - Rounded, Dark Background, White Text */
.about-btn-clean {
    display: inline-block;
    background: #0A2E6E;
    /* Dark background */
    color: #ffffff;
    /* White text */
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    /* Rounded corners */
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.15);
    cursor: pointer;
}

.about-btn-clean:hover {
    background: #317be8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.25);
}

/* ========================================
   RESPONSIVE DESIGN FOR ABOUT US
   ======================================== */

/* Tablet - Medium Screens */
@media (max-width: 768px) {
    .about-section-clean {
        padding: 4rem 0;
        /* Slightly reduced padding */
    }

    .about-content-clean {
        max-width: 600px;
        padding: 0 1.25rem;
    }

    .about-title-clean {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text-clean {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-btn-clean {
        padding: 0.75rem 2rem;
        font-size: 0.9375rem;
    }
}

/* Mobile - Small Screens */
@media (max-width: 480px) {
    .about-section-clean {
        padding: 3rem 0;
        /* Reduced padding for mobile */
    }

    .about-content-clean {
        padding: 0 1rem;
    }

    .about-title-clean {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .about-text-clean {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .about-text-clean:last-of-type {
        margin-bottom: 2rem;
    }

    /* Button remains centered and full-width on mobile */
    .about-btn-clean {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }
}