/* ===================================
   ABOUT HERO
=================================== */

.about-hero{
    background:#052b6d;
    color:#fff;
    text-align:center;
    padding:120px 10%;
}

.about-hero span{
    color:#d4a017;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-hero h1{
    max-width:1000px;
    margin:20px auto;
    font-size:3rem;
    line-height:1.3;
}

.about-hero p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    color:#dcdcdc;
    font-size:1.05rem;
}

/* ===================================
   ABOUT FIRM
=================================== */

.about-firm{
    padding:100px 10%;
    background:#fff;

    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.about-content{
    flex:1;
}

.about-content span{
    color:#d4a017;
    font-weight:600;
    letter-spacing:1px;
}

.about-content h2{
    color:#052b6d;
    font-size:2.5rem;
    margin:15px 0 25px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

/* ===================================
   MISSION & VISION
=================================== */

.mission-section{
    background:#f7f9fc;
    padding:100px 10%;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.mission-card h3{
    color:#052b6d;
    margin-bottom:15px;
}

.mission-card p{
    color:#555;
    line-height:1.8;
}

/* ===================================
   SECTION TITLE
=================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4a017;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    color:#052b6d;
    font-size:2.4rem;
    margin-top:10px;
}

/* ===================================
   VALUES
=================================== */

.values-section{
    padding:100px 10%;
    background:#fff;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    border:1px solid #e8e8e8;
    padding:35px;
    border-radius:15px;
    text-align:center;

    transition:0.3s ease;
}

.value-card:hover{
    transform:translateY(-8px);
    border-color:#d4a017;
}

.value-card h4{
    color:#052b6d;
    margin-bottom:12px;
}

.value-card p{
    color:#666;
    line-height:1.7;
}

/* ===================================
   PRACTICE AREA
=================================== */

.practice-section{
    padding:100px 10%;
    background:#f7f9fc;
}

.practice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.practice-card{
    background:#fff;
    padding:30px;
    border-radius:15px;

    text-align:center;

    color:#052b6d;
    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.practice-card:hover{
    transform:translateY(-6px);
}

/* ===================================
   FOUNDER MESSAGE
=================================== */

.founder-section{
    padding:100px 10%;
    background:#fff;
}

.founder-card{
    max-width:1000px;
    margin:auto;

    background:#f7f9fc;
    border-left:5px solid #d4a017;

    padding:50px;

    border-radius:15px;
}

.founder-card h2{
    color:#052b6d;
    margin-bottom:20px;
}

.founder-card p{
    color:#555;
    line-height:1.9;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

.about-firm{
    flex-direction:column;
}

.mission-section{
    grid-template-columns:1fr;
}

.values-grid{
    grid-template-columns:repeat(2,1fr);
}

.practice-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-hero h1{
    font-size:2.4rem;
}

.about-content h2{
    font-size:2rem;
}

}

@media(max-width:768px){

.about-hero{
    padding:90px 7%;
}

.about-firm,
.mission-section,
.values-section,
.practice-section,
.founder-section{
    padding:70px 7%;
}

.values-grid,
.practice-grid{
    grid-template-columns:1fr;
}

.about-hero h1{
    font-size:2rem;
}

.section-title h2{
    font-size:1.9rem;
}

.founder-card{
    padding:35px;
}

}