* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #1a3a5f;
  --secondary: #c9a83e;
  --accent: #8b0000;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
}

body {
  color: var(--dark);
  line-height: 1.6;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header/Navigation */
header {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.5rem;
  color: #2a3d4e;
  font-style: italic;
  font-weight: bold;
}

.brand-text p {
  font-size: 0.9rem;
  color: #4a7c7e;
  font-style: italic;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #2a3d4e;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #4a7c7e;
}
/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #e6c12e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
#expertise {
  background: #3a3d4e;
  padding: 5rem 2rem;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.section-header h3 {
  font-size: 1.8rem;
  font-style: italic;
}

.section-header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.expertise-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.expertise-card {
  background: #4a4d5e;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.expertise-card h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Migration and Refugee Law Section */
.migration-refugee {
  padding: 60px 0;
  background-color: white;
}

.migration-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  min-height: auto;
}

.migration-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  max-height: 550px;
  padding-right: 15px;
}

.migration-text::-webkit-scrollbar {
  width: 6px;
}

.migration-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.migration-text::-webkit-scrollbar-thumb {
  background: #c9a83e;
  border-radius: 3px;
}

.migration-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.migration-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.migration-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.migration-text li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

/* Migration and Refugee image styling */
.migration-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  max-height: 450px;
}

.migration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .migration-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .migration-content {
    flex-direction: column;
    gap: 30px;
  }

  .migration-text {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .migration-image {
    height: 350px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .migration-refugee {
    padding: 40px 0;
  }

  .migration-image {
    height: 250px;
  }

  .migration-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .migration-text h2 {
    font-size: 24px;
  }
}
/* Other Expertise Section */
.other-expertise {
  padding: 60px 0;
  background-color: var(--light);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.expertise-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-left: 4px solid var(--secondary);
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

/* Footer */
footer {
  background-color: #0f2744;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .construction-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
}
