
/* --- ABOUT PAGE STYLES --- */
    .hero {
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url("../img/hero2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    }

    .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    }

    .hero-content {
    position: relative;
    color: white;
    max-width: 1000px;
    padding: 0 1.5rem;
    }

    .hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    }

    .hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 500;
    }

    /* --- RESPONSIVE MOBILE STYLES --- */

    @media (max-width: 768px) {
        .hero-content {
        max-width: 568px;
        } 
    }

    @media (max-width: 480px) {
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        padding-bottom: 8px;
    }

    .hero-content p {
        font-size: 1rem;
    }
    }
    
/* About-Us Section */
    .about-section {
    color: #222;
    }

    /* Container */
    .about-page-container {
    margin: 0 auto;
    padding: 60px 20px;
    }

    /* Intro */
    .about-intro {
    text-align: center;
    margin-bottom: 60px;
    }
    .about-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #602c6d;
    }
    .about-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    }

    /* Mission & Vision */
    .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 70px;
    }
    .about-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(96,44,109,0.15);
    }
    .about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D98638;
    }
    .about-card p {
    line-height: 1.6;
    color: #444;
    }

    /* Values */
    .about-values {
    margin-bottom: 10px;
    text-align: center;
    }
    .about-values h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #602c6d;
    }
    .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    }
    .value-item {
    background: #fafafa;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #D98638;
    }
    .value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #602c6d;
    }
    .value-item p {
    font-size: 0.95rem;
    color: #555;
    }

    /* Responsive */
    @media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    @media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
    }
    
/* Founder Section */
    .founder-section {
    background: #faf7f5;
    padding: 70px 20px;
    }

    .founder-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    }

    .founder-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    object-fit: cover;
    }

    .founder-content {
    text-align: left;
    }

    .founder-title {
    font-size: 2rem;
    font-weight: 800;
    color: #602c6d;
    margin-bottom: 10px;
    }

    .founder-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d98638;
    margin-bottom: 20px;
    text-decoration: none;
    }

    .founder-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    }

    .founder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    }

    .founder-btn {
    background: #602c6d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    }

    .founder-btn:hover {
    background: #4e2359;
    }

    .founder-btn.alt {
    background: #d98638;
    }

    .founder-btn.alt:hover {
    background: #b96d2f;
    }

    /* Mobile responsive */
    @media(max-width: 768px) {
    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-content {
        text-align: center;
    }
    .founder-links {
        justify-content: center;
    }
    }