  :root {
      --primary: #1a3a6c;
      --secondary: #ff6b6b;
      --accent: #4d8af0;
      --light: #f8f9fa;
      --dark: #212529;
      --success: #28a745;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
      --border-radius: 10px;
      --section-padding: 100px 0;
  }


  header {
      background-color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow);
      padding: 15px 0;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo-text {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
  }

  .logo-highlight {
      color: var(--secondary);
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav li {
      margin: 0 12px;
      position: relative;
  }

  nav a {
      color: var(--dark);
      text-decoration: none;
      padding: 8px 0;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
      font-size: 1.05rem;
  }

  nav a:hover {
      color: var(--primary);
  }

  nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background-color: var(--secondary);
      transition: var(--transition);
      border-radius: 2px;
  }

  nav a:hover::after {
      width: 100%;
  }

  .dropdown-menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 320px;
      box-shadow: var(--shadow);
      border-radius: var(--border-radius);
      padding: 15px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      z-index: 10;
  }

  .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown-menu li {
      margin: 0;
  }

  .dropdown-menu a {
      color: var(--dark);
      display: flex;


      padding: 12px 25px;
      font-size: 1rem;
  }

  .dropdown-menu a:hover {
      background-color: var(--light);
      color: var(--primary);
  }



  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.7;
      color: var(--dark);
      background-color: white;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.3;
  }

  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
  }



  .btn {
      display: inline-block;
      background-color: var(--secondary);
      color: white;
      padding: 14px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow);
      font-size: 1.05rem;
      text-align: center;
  }

  .btn:hover {
      background-color: #ff5252;
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
  }

  .btn-secondary {
      background-color: var(--primary);
  }

  .btn-secondary:hover {
      background-color: #0d2a5e;
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--primary);
      font-size: 1.8rem;
      cursor: pointer;
      z-index: 1001;
  }



  /* Section Styles */
  section {
      padding: var(--section-padding);
  }

  .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
  }

  .section-title h2 {
      font-size: 2.4rem;

      margin-bottom: 15px;
  }

  .section-title p {
      color: var(--gray);
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
  }

  .section-title::after {
      content: '';
      width: 80px;
      height: 5px;
      background: var(--secondary);
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
  }




  /* Footer */
  footer {
      background-color: var(--dark);
      color: white;
      padding: 80px 0 0;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      margin-bottom: 60px;
  }

  .footer-section h3 {
      font-size: 1.4rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
  }

  .footer-section h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
  }

  .footer-section p,
  .footer-section li {
      margin-bottom: 15px;
      opacity: 0.85;
      font-size: 1.05rem;
  }

  .footer-section ul {
      list-style: none;
  }

  .footer-section li {
      display: flex;
      align-items: flex-start;
  }

  .footer-section li i {
      margin-right: 12px;
      color: var(--accent);
      min-width: 25px;
      margin-top: 5px;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
  }

  .footer-links a {
      color: var(--light-gray);
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
  }

  .footer-links a:hover {
      color: var(--secondary);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px 0;
      text-align: center;
      font-size: 0.95rem;
      opacity: 0.7;
  }

  @media (max-width: 1100px) {
      :root {
          --section-padding: 80px 0;
      }

      nav li {
          margin: 0 10px;
      }
  }

  @media (max-width: 992px) {

      .header-btn {
          display: none;
      }

      nav ul {
          display: none;
          position: fixed;
          top: 0;
          right: -300px;
          width: 300px;
          height: 100vh;
          background: white;
          flex-direction: column;
          padding: 100px 30px 30px;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          transition: var(--transition);
      }

      nav ul.active {
          right: 0;
          display: flex;
      }

      nav li {
          margin: 0 0 20px 0;
      }

      .dropdown-menu {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          background: rgba(26, 58, 108, 0.05);
          margin: 10px 0 0 15px;
          display: none;
          width: calc(100% - 30px);
      }

      .dropdown:hover .dropdown-menu {
          display: block;
      }

      .mobile-menu-btn {
          display: block;
      }

  }



  @media (max-width: 768px) {

      :root {
          --section-padding: 70px 0;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      .footer-content {
          gap: 40px;
      }

      .dropdown-menu {

          position: static;
        
          transform: none;
          opacity: 1;
          visibility: visible;
          min-width: unset;
          box-shadow: none;
          padding: 0;
          background-color: transparent;
      }

      .dropdown-menu li a {
          padding: 10px 15px;
          display: block;
          color: #333;
          border-bottom: 1px solid #eee;
      }

      .dropdown-menu li:last-child a {
          border-bottom: none;
      }
  }



  @media (max-width: 576px) {
      .logo-text {
          font-size: 1.6rem;
      }
  }