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

  body {
    font-family: 'Inter', sans-serif;
    background-color: #0A1F44;
    color: white;
    line-height: 1.6;
  }

  header {
    background-color: #0A1F44;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #1A2E60;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5FA8D3;
  }

  .logo img {
    height: 40px;
    margin-right: 10px;
  }

  nav {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
  }

  nav a {
    text-decoration: none;
    color: #AFCBFF;
    font-weight: 600;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #ffffff;
  }

  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #0A1F44 0%, #1A2E60 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #5FA8D3;
    line-height: 1.2;
  }

  .hero-section p {
    font-size: 1.2rem;
    color: #AFCBFF;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5FA8D3;
    color: #0A1F44;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0.5rem;
  }

  .cta-button:hover {
    background-color: #4D96BD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .cta-button.secondary {
    background-color: transparent;
    color: #5FA8D3;
    border: 2px solid #5FA8D3;
  }

  .cta-button.secondary:hover {
    background-color: rgba(95, 168, 211, 0.1);
  }

  /* Benefits Section */
  .benefits-section {
    padding: 4rem 2rem;
    background-color: #06152F;
  }

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
    color: #5FA8D3;
    margin-bottom: 1rem;
  }

  .section-title p {
    color: #AFCBFF;
    max-width: 700px;
    margin: 0 auto;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .benefit-card {
    background-color: #0A1F44;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #5FA8D3;
  }

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

  .benefit-card h3 {
    color: #5FA8D3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .benefit-card h3 i {
    font-size: 1.5rem;
  }

  .benefit-card p {
    color: #AFCBFF;
  }

  /* Process Section */
  .process-section {
    padding: 4rem 2rem;
    background-color: #0A1F44;
  }

  .process-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  .process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .step-number {
    width: 60px;
    height: 60px;
    background-color: #1A2E60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5FA8D3;
    border: 3px solid #5FA8D3;
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
  }

  .step-content {
    background-color: #1A2E60;
    border-radius: 10px;
    padding: 1.5rem;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .step-content h3 {
    color: #5FA8D3;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    color: #AFCBFF;
    margin-bottom: 0.5rem;
  }

  .step-content ul {
    padding-left: 1.5rem;
    color: #AFCBFF;
  }

  .step-content li {
    margin-bottom: 0.5rem;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 4px;
    height: calc(100% - 60px);
    background-color: #1A2E60;
    z-index: 0;
  }

  /* Success Stories */
  .success-section {
    padding: 4rem 2rem;
    background-color: #06152F;
  }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
  }

  .testimonial-card {
    background-color: #0A1F44;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    border: 1px solid #1A2E60;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(95, 168, 211, 0.1);
    font-family: serif;
    line-height: 1;
  }

  .testimonial-content {
    color: #AFCBFF;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1A2E60;
    margin-right: 1rem;
    overflow: hidden;
  }

  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-info h4 {
    color: #5FA8D3;
    margin-bottom: 0.2rem;
  }

  .author-info p {
    color: #AFCBFF;
    font-size: 0.9rem;
  }

  /* Contact Section */
  .contact-section {
    background-color: #1A2E60;
    padding: 4rem 2rem;
    text-align: center;
  }

  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5FA8D3;
  }

  .contact-section p {
    font-size: 1.1rem;
    color: #AFCBFF;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

 

  .btn {
    padding: 1rem 2rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .btn-next {
    background-color: #5FA8D3;
    color: #0A1F44;
  }

  .btn-next:hover {
    background-color: #4D96BD;
  }

  .btn-prev {
    background-color: transparent;
    color: #AFCBFF;
    border: 1px solid #1A2E60;
  }

  .btn-prev:hover {
    border-color: #5FA8D3;
    color: #5FA8D3;
  }
   .btn-submit {
      background: linear-gradient(45deg, var(--accent), var(--accent-dark));
      color: var(--white);
      box-shadow: 0 4px 15px rgba(95, 168, 211, 0.4);
    }

    .btn-submit:hover {
      background: linear-gradient(45deg, var(--accent-dark), var(--accent));
      box-shadow: 0 6px 20px rgba(95, 168, 211, 0.6);
      transform: translateY(-2px);
    }


  .document-upload {
    border: 2px dashed #1A2E60;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }

  .document-upload:hover {
    border-color: #5FA8D3;
    background-color: rgba(95, 168, 211, 0.1);
  }

  .document-upload i {
    font-size: 2rem;
    color: #5FA8D3;
    margin-bottom: 1rem;
    display: block;
  }

  .document-upload p {
    color: #AFCBFF;
    margin-bottom: 0;
  }

  .document-requirements {
    background-color: #0A1F44;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .document-requirements h4 {
    color: #5FA8D3;
    margin-bottom: 0.5rem;
  }

  .document-requirements ul {
    color: #AFCBFF;
    padding-left: 1.5rem;
  }

  .document-requirements li {
    margin-bottom: 0.5rem;
  }

  .file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  .file-item {
    background-color: #0A1F44;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .file-item i {
    color: #5FA8D3;
  }

  .remove-file {
    color: #FF6B6B;
    cursor: pointer;
    margin-left: 0.5rem;
  }

  .review-summary {
    background-color: #0A1F44;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .review-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1A2E60;
  }

  .review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .review-item h4 {
    color: #5FA8D3;
    margin-bottom: 0.5rem;
  }

  .review-item p {
    color: #AFCBFF;
    margin-bottom: 0.3rem;
  }

  .agreement-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .agreement-checkbox input {
    margin-right: 1rem;
    margin-top: 0.3rem;
  }

  .agreement-checkbox label {
    color: #AFCBFF;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .agreement-checkbox a {
    color: #5FA8D3;
    text-decoration: none;
  }

  .agreement-checkbox a:hover {
    text-decoration: underline;
  }

  .success-message {
    text-align: center;
    padding: 2rem;
  }

  .success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
  }

  .success-message h3 {
    color: #5FA8D3;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .success-message p {
    color: #AFCBFF;
    margin-bottom: 1.5rem;
  }

  /* FAQ Section */
  .faq-section {
    padding: 4rem 2rem;
    background-color: #0A1F44;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #1A2E60;
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-question {
    padding: 1.5rem;
    background-color: #1A2E60;
    color: #5FA8D3;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
  }

  .faq-question:hover {
    background-color: #1f366e;
  }

  .faq-question i {
    transition: transform 0.3s;
  }

  .faq-question.active i {
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #0A1F44;
  }

  .faq-answer.show {
    padding: 1.5rem;
    max-height: 500px;
  }

  .faq-answer p {
    color: #AFCBFF;
    margin-bottom: 1rem;
  }

  .faq-answer p:last-child {
    margin-bottom: 0;
  }

  /* Footer */
  footer {
    background-color: #06152F;
    padding: 2rem;
    text-align: center;
    color: #AFCBFF;
    border-top: 1px solid #1A2E60;
  }

  /* Agreement Modal */
  #agreementModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
  }

  .modal-content {
    background-color: #06152F;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    color: #AFCBFF;
  }

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

  .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }

    .step-title {
      font-size: 0.8rem;
    }

    .step:not(:last-child)::after {
      left: 70%;
      width: 60%;
    }

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

    .step-number {
      margin-right: 0;
      margin-bottom: 1rem;
    }

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

  @media screen and (max-width: 480px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }

    nav {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
      width: 100%;
    }

    nav a {
      font-size: 1rem;
    }

    .step-title {
      display: none;
    }

    .step:not(:last-child)::after {
      left: 80%;
      width: 40%;
    }

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section p {
      font-size: 1rem;
    }

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

  .fa-spinner {
    margin-right: 8px;
}

/* Form Styles */
.form-container {
  max-width: 900px;
  margin: 2rem auto;
  background-color: #0A1F44;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #1A2E60;
}

.form-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.form-header::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1A2E60;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 60px;
  width: calc(100% - 60px);
  height: 2px;
  background-color: #1A2E60;
  z-index: -1;
}

.step.active .step-number {
  background-color: #5FA8D3;
  color: #0A1F44;
  border-color: #5FA8D3;
}

.step.active .step-title {
  color: #5FA8D3;
}

.step.completed .step-number {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.step.completed .step-title {
  color: #4CAF50;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1A2E60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #AFCBFF;
  border: 2px solid #1A2E60;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.step-title {
  font-size: 0.9rem;
  color: #AFCBFF;
  text-align: center;
  transition: all 0.3s;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  color: #5FA8D3;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form-step-description {
  color: #AFCBFF;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #AFCBFF;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #1A2E60;
  border: 1px solid #1A2E60;
  border-radius: 5px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5FA8D3;
  box-shadow: 0 0 0 2px rgba(95, 168, 211, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select[multiple] {
  height: auto;
  min-height: 120px;
  padding: 10px;
}

.form-hint {
  display: block;
  color: #6D83B8;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.skills-container {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.skills-column {
  flex: 1;
}

.skill-category {
  background-color: #1A2E60;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.skill-category h4 {
  color: #5FA8D3;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.skill-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}

.skill-options label {
  display: flex;
  align-items: center;
  color: #AFCBFF;
  font-size: 0.9rem;
  cursor: pointer;
}

.skill-options input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
}

.document-requirements {
  background-color: #1A2E60;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.document-requirements h4 {
  color: #5FA8D3;
  margin-bottom: 0.5rem;
}

.document-requirements ul {
  color: #AFCBFF;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.document-requirements li {
  margin-bottom: 0.3rem;
}

.document-upload {
  border: 2px dashed #1A2E60;
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.document-upload:hover {
  border-color: #5FA8D3;
  background-color: rgba(95, 168, 211, 0.1);
}

.document-upload i {
  font-size: 2rem;
  color: #5FA8D3;
  margin-bottom: 1rem;
}

.document-upload p {
  color: #AFCBFF;
  margin-bottom: 1rem;
}

.btn-upload {
  background-color: #5FA8D3;
  color: #0A1F44;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-upload:hover {
  background-color: #4D96BD;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  justify-content: center;
}

.file-item {
  background-color: #1A2E60;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #AFCBFF;
}

.file-item i {
  color: #5FA8D3;
}

.remove-file {
  color: #FF6B6B;
  cursor: pointer;
  margin-left: 0.5rem;
}

.review-summary {
  background-color: #1A2E60;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0A1F44;
}

.review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-item h5 {
  color: #5FA8D3;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.review-item p {
  color: #AFCBFF;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.agreement-checkbox input {
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.agreement-checkbox label {
  color: #AFCBFF;
  font-size: 0.9rem;
  line-height: 1.5;
}

.agreement-checkbox a {
  color: #5FA8D3;
  text-decoration: none;
}

.agreement-checkbox a:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-next {
  background-color: #5FA8D3;
  color: #0A1F44;
}

.btn-next:hover {
  background-color: #4D96BD;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-prev {
  background-color: transparent;
  color: #AFCBFF;
  border: 1px solid #1A2E60;
}

.btn-prev:hover {
  border-color: #5FA8D3;
  color: #5FA8D3;
}

.btn-submit {
  background-color: #4CAF50;
  color: white;
  width: 200px;
  justify-content: center;
}

.btn-submit:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .skills-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-title {
    font-size: 0.8rem;
  }
  
  .step:not(:last-child)::after {
    left: 70%;
    width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .form-container {
    padding: 1.5rem;
  }
  
  .step-title {
    display: none;
  }
  
  .step:not(:last-child)::after {
    left: 80%;
    width: 40%;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}