/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #002169;
  --primary-light: #e6f0ff;
  --secondary: #334D87;
  --accent: #FFCD00;
  --light: #f8f9fa;
  --dark: #002169;
  --gray: #667AA5;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 33, 105, 0.08);
  --transition: all 0.3s ease;
  
  /* Typography */
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans: 'Merriweather Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-serif);
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.brand .logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.cta {
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.cta:hover {
  background-color: #E6B800;
  color: var(--dark);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 2px 0;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--dark);
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(to right, var(--primary-light) 0%, rgba(230, 242, 255, 0.5) 100%);
}

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

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: #E6B800;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.badge-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background-color: var(--white);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.image-placeholder p {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.875rem;
}

/* Quick Links */
.quick-links {
  padding: 4rem 0;
  background-color: var(--white);
}

.quick-links h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark);
}

.testimonial-role {
  color: var(--gray);
  font-weight: 500;
}

.testimonials .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* About Preview */
.about-preview {
  padding: 4rem 0;
  background-color: var(--white);
}

.about-preview .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 1;
}

.about-description {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Pension Preview */
.pension-preview {
  padding: 4rem 0;
  background-color: var(--light);
}

.pension-preview .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pension-content {
  flex: 1;
}

.pension-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.pension-content li {
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.pension-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* FAQs */
.faqs {
  padding: 4rem 0;
  background-color: var(--white);
}

.faqs h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.faq-item {
  background-color: var(--light);
  border-radius: 8px;
  padding: 1.5rem;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--gray);
}

.faqs .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-section ul {
  list-style: none;
  margin-bottom: 2rem;
}

.cta-section li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cta-section .btn {
  background-color: var(--white);
  color: var(--primary);
}

.cta-section .btn:hover {
  background-color: var(--light);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 2rem 0;
  background-color: var(--dark);
  color: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  color: var(--light-gray);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero .container,
  .about-preview .container,
  .pension-preview .container {
    flex-direction: column;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
  }

  .badge-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
  }

  .card-group {
    grid-template-columns: 1fr;
  }
}

/* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #150070;
      --primary-light: #e6f2ff;
      --secondary: #4a4a4a;
      --accent: #ff6b35;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --white: #ffffff;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: var(--secondary);
      background-color: var(--white);
      scroll-behavior: smooth;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    h3 {
      font-size: 1.5rem;
    }

    p {
      margin-bottom: 1rem;
    }

    /* Header */
    .header {
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 20px;
    }

    .brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }

    .nav {
      display: flex;
      gap: 2rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .nav a:hover {
      color: var(--primary);
    }

    .nav a.active {
      color: var(--primary);
    }

    .nav a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary);
      border-radius: 2px;
    }

    .cta {
      background-color: var(--primary);
      color: var(--white);
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .cta:hover {
      background-color: #0f0052;
      transform: translateY(-2px);
    }

    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn span {
      width: 25px;
      height: 3px;
      background-color: var(--dark);
      margin: 2px 0;
      transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: var(--white);
      padding: 1rem;
      box-shadow: var(--shadow);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
    }

    .mobile-nav.active {
      display: flex;
    }

    .mobile-nav a {
      padding: 0.75rem 1rem;
      text-decoration: none;
      color: var(--dark);
      border-bottom: 1px solid var(--light-gray);
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    /* Hero Section */
    .hero {
      padding: 4rem 0;
      background: linear-gradient(to right, var(--primary-light) 0%, rgba(230, 242, 255, 0.5) 100%);
    }

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

    .hero-content {
      flex: 1;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }

    .subtitle {
      font-size: 1.2rem;
      color: var(--gray);
      margin-bottom: 2rem;
    }

    .btn-group {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
    }

    .btn-primary:hover {
      background-color: #0f0052;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background-color: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }

    .badge-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .badge {
      background-color: var(--white);
      color: var(--primary);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 500;
      box-shadow: var(--shadow);
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-placeholder {
      width: 100%;
      max-width: 400px;
      height: 300px;
      background-color: var(--white);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      box-shadow: var(--shadow);
    }

    .image-placeholder p {
      margin-top: 1rem;
      color: var(--gray);
      font-size: 0.875rem;
    }

    /* How It Works Section */
    .how-it-works {
      padding: 4rem 0;
      background-color: var(--white);
    }

    .how-it-works h2 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .how-subtitle {
      text-align: center;
      color: var(--gray);
      margin-bottom: 3rem;
    }

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

    .step-card {
      background-color: var(--white);
      border-radius: 8px;
      padding: 2rem;
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
    }

    .step-number {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .step-card h3 {
      margin-top: 1rem;
      color: var(--primary);
    }

    .step-card p {
      color: var(--gray);
    }

    .calendar-section {
      background-color: var(--light);
      border-radius: 8px;
      padding: 2rem;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .calendar-container {
      max-width: 400px;
      margin: 0 auto;
    }

    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

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

    .calendar-cell {
      padding: 8px;
      border-radius: 4px;
      background-color: var(--white);
    }

    .calendar-cell.header {
      font-weight: bold;
      background-color: transparent;
    }

    .calendar-cell.today {
      background-color: var(--primary);
      color: var(--white);
    }

    .calendar-cell.available {
      background-color: var(--primary-light);
      cursor: pointer;
    }

    .calendar-cell.available:hover {
      background-color: var(--primary);
      color: var(--white);
    }

    /* Quick Links */
    .quick-links {
      padding: 4rem 0;
      background-color: var(--light);
    }

    .quick-links h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .card-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background-color: var(--white);
      border-radius: 8px;
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .card h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .card p {
      color: var(--gray);
    }

    /* Testimonials */
    .testimonials {
      padding: 4rem 0;
      background-color: var(--white);
    }

    .testimonials h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .testimonial-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .testimonial-card {
      background-color: var(--light);
      border-radius: 8px;
      padding: 2rem;
      box-shadow: var(--shadow);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .testimonial-role {
      color: var(--gray);
      font-weight: 500;
    }

    .testimonials .btn {
      display: block;
      width: fit-content;
      margin: 0 auto;
    }

    /* About Preview */
    .about-preview {
      padding: 4rem 0;
      background-color: var(--light);
    }

    .about-preview .container {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .about-content {
      flex: 1;
    }

    .about-description {
      color: var(--gray);
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    /* Pension Preview */
    .pension-preview {
      padding: 4rem 0;
      background-color: var(--white);
    }

    .pension-preview .container {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .pension-content {
      flex: 1;
    }

    .pension-content ul {
      margin-bottom: 2rem;
      padding-left: 1.5rem;
    }

    .pension-content li {
      margin-bottom: 0.5rem;
      color: var(--gray);
    }

    .pension-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    /* FAQs */
    .faqs {
      padding: 4rem 0;
      background-color: var(--light);
    }

    .faqs h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .faq-item {
      background-color: var(--white);
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .faq-item h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .faq-item p {
      color: var(--gray);
    }

    .faqs .btn {
      display: block;
      width: fit-content;
      margin: 0 auto;
    }

    /* CTA Section */
    .cta-section {
      padding: 4rem 0;
      background-color: var(--primary);
      color: var(--white);
      text-align: center;
    }

    .cta-section h2 {
      color: var(--white);
      margin-bottom: 2rem;
    }

    .cta-section ul {
      list-style: none;
      margin-bottom: 2rem;
    }

    .cta-section li {
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    .cta-section .btn {
      background-color: var(--white);
      color: var(--primary);
    }

    .cta-section .btn:hover {
      background-color: var(--light);
      transform: translateY(-2px);
    }

    /* Footer */
    .footer {
      padding: 2rem 0;
      background-color: var(--dark);
      color: var(--white);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .footer-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a {
      color: var(--light-gray);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-copyright {
      text-align: center;
      color: var(--light-gray);
      font-size: 0.875rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      h1 {
        font-size: 2.2rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      .hero .container,
      .about-preview .container,
      .pension-preview .container {
        flex-direction: column;
        text-align: center;
      }

      .btn-group {
        justify-content: center;
      }

      .badge-group {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .nav {
        display: none;
      }

      .cta {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .mobile-nav {
        display: none;
      }

      .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

    @media (max-width: 576px) {
      .btn-group {
        flex-direction: column;
      }

      .card-group {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }
    }

    .contact-us {
      padding: 4rem 0;
      background-color: var(--white);
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-us h2 {
      text-align: center;
      margin-bottom: 3rem;
      color: var(--primary);
      font-size: 2.5rem;
    }

    .contact-content {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 2rem;
      width: 100%;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      min-width: 250px;
      padding: 2rem;
      background-color: var(--light);
      border-radius: 8px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .contact-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
      background-color: var(--primary-light);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .contact-details h3 {
      margin-bottom: 0.5rem;
      color: var(--primary);
      font-size: 1.3rem;
    }

    .contact-details p {
      color: var(--gray);
      margin: 0;
      font-size: 1.1rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .contact-info {
        flex-wrap: wrap;
      }

      .contact-item {
        min-width: calc(50% - 2rem);
      }
    }

    @media (max-width: 768px) {
      .contact-info {
        flex-direction: column;
        align-items: center;
      }

      .contact-item {
        min-width: 100%;
        max-width: 400px;
      }
    }

    @media (max-width: 576px) {
      .contact-us h2 {
        font-size: 2rem;
      }

      .contact-item {
        padding: 1.5rem;
      }

      .contact-icon {
        width: 60px;
        height: 60px;
      }

      .contact-details h3 {
        font-size: 1.2rem;
      }

      .contact-details p {
        font-size: 1rem;
      }
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--dark);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--light-gray);
      border-radius: 4px;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(21, 0, 112, 0.1);
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 1rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-content {
        flex-direction: column;
      }

      .contact-item {
        flex-direction: column;
        text-align: center;
      }

      .contact-icon {
        margin: 0 auto;
      }
    }
