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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f8fb;
  color: #16216b;
  line-height: 1.7;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  background: rgba(33, 64, 154, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  color: #faa51a;
  font-size: 1.5em;
  font-weight: bold;
}

.navbar {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar a:hover,
.navbar a.active {
  background: #faa51a;
  color: #16216b;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5em;
}

.article-hero {
  background: linear-gradient(135deg, #21409a, #16216b);
  color: #fff;
  padding: 74px 20px;
}

.article-hero .eyebrow {
  color: #faa51a;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  font-size: 2.7em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.article-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15em;
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 42px;
  padding: 70px 20px;
  align-items: start;
}

.article {
  background: #fff;
  border: 1px solid #e3e7f6;
  border-radius: 8px;
  padding: 38px;
  box-shadow: 0 10px 26px rgba(22, 33, 107, 0.08);
}

.article h2 {
  color: #16216b;
  font-size: 1.65em;
  line-height: 1.3;
  margin: 34px 0 14px;
}

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

.article h3 {
  color: #21409a;
  font-size: 1.18em;
  margin: 24px 0 10px;
}

.article p {
  color: #444;
  margin-bottom: 18px;
}

.article ul {
  color: #444;
  margin: 0 0 22px 22px;
}

.article li {
  margin-bottom: 10px;
}

.article table {
  border-collapse: collapse;
  color: #444;
  margin: 18px 0 26px;
  width: 100%;
}

.article th,
.article td {
  border: 1px solid #dfe4f4;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.article th {
  background: #f5f7ff;
  color: #16216b;
}

.note {
  background: #fff8e9;
  border-left: 4px solid #faa51a;
  border-radius: 6px;
  color: #333;
  margin: 26px 0;
  padding: 18px 20px;
}

.sidebar {
  background: #fff;
  border: 1px solid #e3e7f6;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 86px;
  box-shadow: 0 8px 22px rgba(22, 33, 107, 0.08);
}

.sidebar h3 {
  margin-bottom: 14px;
}

.sidebar a {
  color: #21409a;
  display: block;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
}

.sidebar a:hover {
  color: #16216b;
  text-decoration: underline;
}

.cta-btn {
  background: #faa51a;
  color: #16216b;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

/* Footer Styles */
    footer {
      background: #16216b;
      color: white;
      padding: 60px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      color: #faa51a;
      margin-bottom: 20px;
      font-size: 1.2em;
    }

    .footer-column p {
      color: #ccc;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
    }

    .footer-column ul li i {
      margin-right: 10px;
      color: #faa51a;
      width: 20px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #faa51a;
    }

    /* Social Icons */
    .social-icons h5 {
      color: #faa51a;
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      color: white;
      font-size: 1.3em;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2a3a8c;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-links a:hover {
      color: #faa51a;
      background: #21409a;
      transform: translateY(-2px);
    }

    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid #2a3a8c;
      padding-top: 20px;
      text-align: center;
    }

    .footer-links {
      margin-bottom: 15px;
    }

    .policy-link {
      color: #faa51a;
      cursor: pointer;
      text-decoration: none;
      margin: 0 15px;
      transition: color 0.3s ease;
      font-size: 0.9em;
    }

    .policy-link:hover {
      color: #ffcf70;
      text-decoration: underline;
    }

    .copyright {
      color: #999;
      font-size: 0.9em;
    }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    
    /* Dropdown UI */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1001;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 12px 20px;
      color: #16216b !important;
      border-bottom: 1px solid #f0f0f0 !important;
      transition: all 0.3s ease;
      border-radius: 0;
    }

    .dropdown-menu a:hover {
      background: #f8f9fa !important;
      color: #21409a !important;
      padding-left: 25px !important;
    }

    .dropdown-menu a:last-child {
      border-bottom: none !important;
    }

/* Mobile Styles */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #16216b;
        flex-direction: column;
        padding: 0;
        text-align: left;
        gap: 0;
        z-index: 1001;
      }

      .navbar.active {
        display: flex;
      }

      .navbar a {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #2a3a8c;
        border-radius: 0;
      }

      /* Mobile Dropdown - Improved for mobile */
      .dropdown {
        width: 100%;
      }

      .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        position: relative;
      }

      .dropdown-menu {
        position: static;
        background: #1a2a7a;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin: 0;
        width: 100%;
        min-width: auto;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
      }

      .dropdown-menu a {
        color: white;
        padding: 12px 20px 12px 35px;
        border-bottom: 1px solid #2a3a8c;
        background: #1a2a7a;
      }

      .dropdown-menu a:hover {
        background: #2a3a8c;
      }

      .dropdown-menu a:last-child {
        border-bottom: 1px solid #2a3a8c;
      }

      .hero h1 {
        font-size: 2em;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .blog-header h2 {
        font-size: 2em;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        flex-direction: column;
      }

      .process-steps::before {
        display: none;
      }

      .step {
        margin-bottom: 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .footer-column ul li {
        justify-content: center;
      }

      .social-links {
        justify-content: center;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .policy-link {
        margin: 5px 0;
      }
    }
  