/* =========================
   HERO SECTION
   ========================= */
#hero {
    height: 70vh;
    width: 100%;

    background-image: url('/assets/images/hero/hero-legal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

#hero p {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* =========================
   ABOUT SECTION
   ========================= */
#about {
    position: relative;
}

.about-section {
    padding: 80px 0;
}

.about-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LEFT IMAGE SIDE */
.about-image {
    background-image: url('/assets/images/about/about-main-inside.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* =========================
   SERVICES SECTION
   ========================= */
#services {
    padding: 60px 0;
}

#services h2 {
    font-weight: 700;
}

#services .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#services .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}