/* =========================
   HERO SECTION
   ========================= */
#hero {
    height: 85vh;
    min-height: 580px;
    background-image: linear-gradient(rgba(10, 37, 51, 0.7), rgba(10, 37, 51, 0.75)), 
                      url('/assets/images/hero/hero-legal.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

#hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

#hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: #f0f0f0;
}

/* =========================
   ABOUT SECTION
   ========================= */
.about-section {
    padding: 100px 0;
}

.about-text {
    padding-right: 40px;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-image {
    background-image: url('/assets/images/about/about-main-inside.jpg');
    background-size: cover;
    background-position: center;
    min-height: 520px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================
   SERVICES SECTION
   ========================= */
#services {
    padding: 90px 0;
    background: #f8f9fa;
}

#services h2 {
    font-size: 2.7rem;
    margin-bottom: 50px;
}

.service-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.service-card img {
    height: 220px;
    object-fit: cover;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .about-text {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    #hero {
        height: 75vh;
    }
}