/* About Hero Section */
.about-hero  {
    background: linear-gradient(rgba(16, 18, 18, 0.5), rgba(19, 23, 21, 0.5)), url('img/Law\ firm\ 1.8.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 100px;
    margin-top: 0;
    text-align: center;
}

.about-hero-content   {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.about-hero p {
    
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(225, 225, 225, 0.9)
}



/* About Page Content*/
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content p {
    color: #000;
}

.about-image {
    height: 400px;
    background: url('img/IMG_3272.JPG') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 300px;
    }

}


