

body {
      font-family: Arial, sans-serif;
      background-color: #f6f6f6;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .header {
      background-color: #f26623;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 25px;
      flex-wrap: wrap;
    }

    .header img {
      height: 50px;
    }

    .nav-links a {
      color: white;
      margin-left: 20px;
      text-decoration: none;
      font-weight: bold;
    }

    .slider {
      position: relative;
      overflow: hidden;
      height: 300px;
    }

    .slides {
      display: flex;
      width: 300%;
      animation: slide 12s infinite;
    }

    .slides img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    @keyframes slide {
      0% { margin-left: 0%; }
      33% { margin-left: 0%; }
      36% { margin-left: -100%; }
      66% { margin-left: -100%; }
      69% { margin-left: -200%; }
      99% { margin-left: -200%; }
      100% { margin-left: 0%; }
    }

    .content {
      padding: 30px;
    }

    .content h1 {
      color: #333;
      font-size: 24px;
    }

    .content p {
      color: #666;
      font-size: 16px;
    }

    .countries {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 20px;
    }

    .country-box {
      width: 30%;
      margin-bottom: 20px;
      text-align: center;
    }

    .country-box img {
      width: 50px;
      height: 30px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .country-box span {
      display: block;
      margin-top: 6px;
      font-size: 14px;
      color: #333;
    }

    .cta-button {
      display: inline-block;
      margin-top: 30px;
      background-color: #f26623;
      color: #fff;
      text-decoration: none;
      padding: 14px 25px;
      border-radius: 6px;
      font-weight: bold;
    }

    .form-section {
      margin-top: 40px;
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
    }

    .form-section h2 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #444;
    }

    .form-section input,
    .form-section textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .form-section button {
      background-color: #f26623;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    .footer {
      background-color: #f26623;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

    main {
      padding: 30px;
    }

    main h1 {
      font-size: 24px;
      color: #111;
    }

    main p,
    main li {
      font-size: 16px;
      color: #333;
    }

    main img {
      max-width: 100%;
      border-radius: 10px;
      margin: 15px 0;
    }

    .b2b-box {
      background: #fff3e8;
      border: 1px solid #fcd9b6;
      border-radius: 10px;
      padding: 20px;
      margin-top: 20px;
    }

    .b2b-box h2 {
      color: #cc5200;
      margin-bottom: 10px;
    }

    .b2b-box a {
      background: #f26623;
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      display: inline-block;
      margin-top: 10px;
      text-decoration: none;
    }

    @media screen and (max-width: 600px) {
      .country-box {
        width: 45%;
      }

      .nav-links {
        margin-top: 10px;
        text-align: center;
        width: 100%;
      }

      .nav-links a {
        margin: 10px;
        display: inline-block;
      }
    }
    .visa-hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.pexels.com/photos/461048/pexels-photo-461048.jpeg');
      background-size: cover;
      background-position: center;
    }
    .contact-hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg');
      background-size: cover;
      background-position: center;
    }
    .map-container {
      height: 400px;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
.service-hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.pexels.com/photos/259165/pexels-photo-259165.jpeg');
      background-size: cover;
      background-position: center;
    }
    .form-hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.pexels.com/photos/590022/pexels-photo-590022.jpeg');
      background-size: cover;
      background-position: center;
    }
    .form-step {
      display: none;
    }
    .form-step.active {
      display: block;
    }
    .progress-bar {
      height: 6px;
      transition: width 0.3s ease;
    }