* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #4a5568;
  background: #f8f9fa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: #051430;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.header {
  background: #1A4B8F;
  padding: 16px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #94a3b8;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
}

.nav a:not(.active) {
  opacity: 0.8;
}

/* Hero */
.hero {
  background: #002B5B;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-content {
  flex: 1;
  padding: 80px 64px;
}

.hero-label {
  color: #ff6b35;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  width: 560px;
  height: 600px;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: #dc2626;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: #051430;
  border: 2px solid #051430;
}

/* Section */
.section {
  padding: 80px 64px;
}

.section-label {
  color: #ff6b35;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #051430;
  text-align: center;
  margin-bottom: 16px;
}

.section-text {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Services */
.services {
  background: #f8f9fa;
}

.services-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff6b35;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #051430;
}

.service-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.5;
}

/* Stats */
.stats {
  background: #002B5B;
  display: flex;
  justify-content: center;
  padding: 48px 64px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  width: 280px;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  color: #94a3b8;
  font-size: 14px;
  opacity: 0.8;
}

/* About Section */
.about {
  background: #ffffff;
  display: flex;
  min-height: 480px;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  gap: 16px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-text {
  text-align: left;
  margin: 0;
}

.about-image {
  width: 560px;
  height: 480px;
  object-fit: cover;
}

/* Clients */
.clients {
  background: #f8f9fa;
}

.client-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo {
  width: 160px;
  height: 60px;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #4a5568;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.client-logo:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: #002B5B;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 64px;
  gap: 32px;
  flex-direction: column;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.cta p {
  color: #94a3b8;
  font-size: 16px;
  text-align: center;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #002B5B;
}

.footer-content {
  display: flex;
  gap: 48px;
  padding: 64px;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-brand .logo-sub {
  color: #94a3b8;
  font-size: 10px;
  letter-spacing: 2px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact h4 {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact p,
.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
}

.copyright {
  background: #0D2647;
  padding: 20px 64px;
  text-align: center;
}

.copyright p {
  color: #94a3b8;
  font-size: 12px;
  opacity: 0.5;
}

/* Page Banner */
.page-banner {
  background: #002B5B;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 64px;
}

.page-banner .section-label {
  margin-bottom: 0;
}

.page-banner h1 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
}

/* Content Section */
.content-section {
  background: #ffffff;
  padding: 80px 160px;
}

.content-section p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Cards Row */
.cards-row {
  background: #f8f9fa;
  padding: 64px 160px;
  display: flex;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #051430;
}

.card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

/* Services Page */
.services-page {
  background: #ffffff;
  padding: 80px 160px;
}

.services-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 16px;
  margin-top: 40px;
}

.services-page h2:first-child {
  margin-top: 0;
}

.services-page p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Clients Page */
.clients-page {
  background: #f8f9fa;
  padding: 80px 64px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.client-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.client-card .client-logo-img {
  width: 140px;
  height: 80px;
  object-fit: contain;
}

.client-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #051430;
  flex: 1;
}

.client-card .btn {
  font-size: 12px;
  padding: 10px 20px;
  width: 100%;
  justify-content: center;
}

/* Legislation Page */
.legislation-section {
  background: #ffffff;
  padding: 80px 160px;
}

.legislation-section p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.legislation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.legislation-list a {
  display: block;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #051430;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.legislation-list a:hover {
  background: #e2e8f0;
}

/* Reports Page */
.reports-section {
  background: #ffffff;
  padding: 80px 160px;
  text-align: center;
}

.reports-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 24px;
}

.reports-section p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Contact Page */
.contact-page {
  display: flex;
  gap: 64px;
  padding: 80px 160px;
  background: #ffffff;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 8px;
}

.contact-form > p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #051430;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-info {
  width: 350px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 16px;
}

.contact-info p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Careeers Page */
.careers-section {
  background: #ffffff;
  padding: 80px 160px;
  text-align: center;
}

.careers-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 40px;
}

.careers-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.careers-form .form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.careers-form .form-row input {
  flex: 1;
}

/* Portfolio Page */
.portfolio-section {
  background: #ffffff;
  padding: 80px 160px;
  text-align: center;
}

.portfolio-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.portfolio-item {
  width: 400px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
}

.portfolio-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #051430;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    height: 300px;
  }

  .about {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    height: 300px;
  }

  .contact-page {
    flex-direction: column;
    padding: 40px 24px;
  }

  .contact-info {
    width: 100%;
  }

  .content-section,
  .cards-row,
  .services-page,
  .clients-page,
  .legislation-section,
  .reports-section,
  .portfolio-section,
  .careers-section {
    padding: 40px 24px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    padding: 40px 24px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .header {
    padding: 16px 24px;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 40px 24px;
  }

  .cta {
    padding: 40px 24px;
  }
}
