
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f8f9fa;
    }

    /* Header Styles */
    .top-strip {
      background: #253f71;
      color: white;
      padding: 8px 0;
      font-size: 0.9rem;
      text-align: right;
    }

    .top-strip span {
      margin: 0 20px;
    }

    .header {
      background: white;
      padding: 15px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header img {
      height: 50px;
      width: auto;
    }

    #navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;
      position: relative;
    }
    
    #navbar a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: color 0.3s;
    }
    
    #navbar a:hover {
      color: #253f71;
    }
    
    /* Enhanced Dropdown Menu Styles */
    .dropdown {
      position: relative;
    }
    
    .dropdown > a {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .dropdown > a::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .dropdown:hover > a::after {
      transform: rotate(180deg);
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 240px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.3s ease;
      z-index: 1001;
      padding: 10px 0;
      border-top: 3px solid #253f71;
      overflow: hidden;
    }
    
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(5px);
    }
    
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 20px;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #253f71;
    }
    
    .dropdown-menu a {
      display: flex;
      align-items: center;
      padding: 12px 20px;
      color: #555;
      transition: all 0.3s;
      border-left: 3px solid transparent;
      position: relative;
      overflow: hidden;
    }
    
    .dropdown-menu a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, rgba(37, 63, 113, 0.05), rgba(37, 63, 113, 0.1));
      transition: width 0.3s ease;
      z-index: -1;
    }
    
    .dropdown-menu a:hover::before {
      width: 100%;
    }
    
    .dropdown-menu a:hover {
      color: #253f71;
      border-left-color: #253f71;
      padding-left: 25px;
    }
    
    .dropdown-menu a i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
      color: #253f71;
      font-size: 0.9rem;
    }
    
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Contact Hero Section */
    .contact-hero {
      background: #253f71;
      color: white;
      padding: 80px 5%;
      text-align: center;
    }

    .contact-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .contact-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Contact Sections */
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5%;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-bottom: 80px;
    }

    .contact-info {
      display: grid;
      gap: 30px;
    }

    .info-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .info-icon {
      width: 70px;
      height: 70px;
      background: #253f71;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 1.5rem;
    }

    .info-card h3 {
      margin-bottom: 15px;
      color: #253f71;
    }

    .info-card p {
      color: #253f71;
      margin-bottom: 10px;
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #253f71;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e8ecef;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #253f71;
      outline: none;
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: #253f71;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: #253f71;
    }

    /* Map Section */
    .map-section {
      margin-bottom: 80px;
    }

    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      height: 400px;
    }

    .map-placeholder {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    /* FAQ Section */
    .faq-section h2 {
      text-align: center;
      margin-bottom: 40px;
      color: #253f71;
      font-size: 2.5rem;
    }

    .faq-grid {
      display: grid;
      gap: 20px;
    }

    .faq-item {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      transform: translateY(-2px);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #2c3e50;
    }

    .faq-answer {
      margin-top: 15px;
      color: #7f8c8d;
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-toggle i {
      transform: rotate(180deg);
    }

    .faq-toggle {
      transition: transform 0.3s ease;
    }

    /* Footer Styles */
    footer {
      background: #253f71;
      color: white;
      padding: 50px 5% 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 30px;
    }

    .footer-column img {
      margin-bottom: 20px;
    }

    .footer-column p {
      opacity: 0.8;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: #253f71;
      transform: translateY(-3px);
    }

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #253f71;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      opacity: 0.7;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }    

      .contact-hero h1 {
        font-size: 2.5rem;
      }

      .contact-form {
        padding: 30px 20px;
      }
    

    @media (max-width: 480px) {
      .footer-content {
        grid-template-columns: 1fr;
      }

      .contact-hero h1 {
        font-size: 2rem;
      }

      .info-card {
        padding: 20px;
      }
    }

    /* Animation Classes */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      color: #253f71;
      font-size: 2.5rem;
    }

    .animate-border {
      display: block;
      width: 80px;
      height: 4px;
      background: #253f71;
      margin: 0 auto 30px;
      border-radius: 2px;
    }
  