/* ===== Base ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #1a1a3b;
}

/* ===== Header ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white; /* White background */
    padding: 10px 20px;
    border-bottom: 2px solid #e0e0e0;
}

header .logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #1a1a3b; /* Navy text */
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

nav ul li a i {
    color: #1a1a3b; /* Navy icons */
}

nav ul li a:hover {
    color: #b89a4f; /* Gold hover */
}

nav ul li a:hover i {
    color: #b89a4f; /* Gold icon hover */
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(26,26,59,0.7), rgba(26,26,59,0.7)),
                url('images/law_bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #b89a4f;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #a3833e;
}

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

.services h2 {
    color: #1a1a3b;
    font-size: 28px;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #b89a4f;
    margin-bottom: 10px;
}

.service-card a {
    text-decoration: none;
    color: inherit;
}

.service-card a:hover h3 {
    color: #1a1a3b;
}

/* ===== Footer ===== */
footer {
    background-color: #1a1a3b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer-social {
    margin-bottom: 10px;
}

.footer-social a {
    color: #b89a4f;
    font-size: 20px;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: white;
}

.credit {
    font-size: 14px;
    margin-top: 5px;
}

.credit a {
    color: #b89a4f;
    text-decoration: none;
    font-weight: bold;
}

.credit a:hover {
    color: white;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #fff;
}

.about-hero h1 {
  font-size: 2.75rem;
  color: #0a3d62;
  margin-bottom: 0.5rem;
  text-align: center;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #444;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.about-card:hover,
.about-card:focus {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
  outline: none;
}

.about-icon {
  font-size: 3rem;
  color: #0a3d62;
  margin-bottom: 0.75rem;
}

.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: #054a91;
}

.about-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Team Section */
.team {
  margin-bottom: 3rem;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  color: #0a3d62;
  margin-bottom: 1.5rem;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.team-member {
  background: #f7f9fc;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 0.1);
  width: 280px;
  padding: 1.5rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover,
.team-member:focus {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.2);
  outline: none;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #0a3d6

