body {
    margin: 0;
    font-family: tahoma;
    background: #f5f5f5;
}

a {
    text-decoration: none;
    color: #222;
}

.container {
    width: 90%;
    margin: auto;
}

/* Header */
.header {
    background: #0b2e4e;
    color: #fff;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.menu a {
    margin: 0 10px;
    color: #fff;
}

.menu .btn {
    background: gold;
    padding: 6px 12px;
    border-radius: 6px;
    color: #000;
}

/* Hero */
.hero {
    background: url('../images/justice.jpg') center/cover no-repeat;
    height: 450px;
    position: relative;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    top: 35%;
}

.hero-btn {
    background: gold;
    padding: 12px 20px;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
}

/* Services */
.services {
    padding: 50px 0;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}

.card img {
    width: 80px;
    margin-bottom: 10px;
}

/* About */
.about {
    background: #fff;
    padding: 50px 0;
}

.about img {
    width: 300px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #0b2e4e;
    color: #fff;
    text-align: center;
    padding: 15px;
}
