* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  img:hover {
    transform: translateY(-5px);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2176ff;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #666;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }
  
  .btn-primary {
    background-color: #2176ff;
    color: white;
    box-shadow: 0 4px 10px rgba(33, 118, 255, 0.3);
  }
  
  .btn-primary:hover {
    background-color: #1e65e5;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 118, 255, 0.4);
  }
  
  .btn-secondary {
    background-color: white;
    color: #2176ff;
    border: 1px solid #2176ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .btn-secondary:hover {
    background-color: #f5f9ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar {
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2176ff;
  }
  
  .logo a {
    position: relative;
  }
  
  .logo a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2176ff;
    transition: width 0.3s;
  }
  
  .logo a:hover:after {
    width: 100%;
  }
  
  .nav-menu ul {
    display: flex;
    gap: 2rem;
  }
  
  .nav-menu a {
    font-weight: 500;
    position: relative;
  }
  
  .nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2176ff;
    transition: width 0.3s;
  }
  
  .nav-menu a:hover:after, .nav-menu a.active:after {
    width: 100%;
  }
  
  .nav-menu a:hover, .nav-menu a.active {
    color: #ffffff;
  }
  
  .btn-apply {
    background-color: #2176ff;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(33, 118, 255, 0.3);
  }
  
  .btn-apply:hover {
    background-color: #1e65e5;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 118, 255, 0.4);
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
  }
  
  
  
  .hero {
    padding: 150px 0 100px;
    background-color: #f8faff;
  }
  
  .hero .container {
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    flex: 0.5;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1A1F2C;
  }
  
  .hero-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
  }
  
  
  .hero-image, .hero-image:after, .hero-image img {
    background: none !important;
    box-shadow: none !important;
    width: 80%; 
    height: auto;
    margin-left: 75px;
 }


  .about-section {
    padding: 100px 0;
  }

  .about-image img {
    display: block;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important; 
    filter: none !important; 
}

  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1A1F2C;
  }
  
  .about-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .about-features {
    margin-top: 2rem;
  }
  
  .about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    background-color: transparent;
    border-radius: 50%;
    color: #2176ff;
}

  
  .feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1A1F2C;
  }
  
  
  .experience-section {
    padding: 100px 0;
    background-color: #2176ff;
    color: white;
  }
  
  .experience-content {
    text-align: center;
  }
  
  .experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .experience-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .experience-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .experience-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: height 0.3s;
    z-index: 1;
  }
  
  .experience-card:hover {
    transform: translateY(-10px);
  }
  
  .experience-card:hover:before {
    height: 100%;
  }
  
  .experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
  }
  
  .experience-text {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
  }
  
  .advantages-section {
    padding: 100px 0;
    background-color: #f8faff;
  }
  
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .advantage-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .advantage-icon {
    margin-bottom: 1.5rem;
    color: #2176ff;
  }
  
  .advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A1F2C;
  }

  .stats-section {
    padding: 100px 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .stat-card {
    display: flex;
    gap: 1.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    color: #2176ff;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2176ff;
    margin-bottom: 0.5rem;
  }
  
  .stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1F2C;
  }
  
  .stat-description {
    color: #666;
  }
  
  .faq-section {
    padding: 100px 0;
    background-color: #f8faff;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
  }
  
  .faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1F2C;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2176ff;
    transition: transform 0.3s;
  }
  
  .faq-answer {
    padding: 0 0 1.5rem;
    display: none;
  }

  .custom-list {
    list-style-type: disc; 
    padding-left: 20px; 
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .application-section {
    padding: 100px 0;
  }
  
  .application-form-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .application-form {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1A1F2C;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #2176ff;
    outline: none;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checkbox-group input {
    width: auto;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .footer {
    background-color: #1A1F2C;
    color: white;
    padding: 80px 0 40px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    max-width: 300px;
  }
  
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    color: #2176ff;
  }
  
  .footer-links {
    display: flex;
    gap: 3rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
  }
  
  .footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #2176ff;
  }
  
  .footer-column ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column a {
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-column a:hover {
    color: #2176ff;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
  }
  
  .social-link:hover {
    color: #fff;
    background-color: #2176ff;
    transform: translateY(-3px);
  }
  
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .about-grid,
    .experience-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .advantages-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .navbar .container {
      height: 70px;
    }
    
    .nav-menu {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 1rem 0;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
      display: block;
    }
    
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .mobile-menu-btn {
      display: flex;
    }
    
    .hero .container {
      flex-direction: column;
    }
    
    .hero-content {
      text-align: center;
    }
    
    .hero-buttons {
      justify-content: center;
      gap: 20px;
    }
    
    .about-grid,
    .experience-grid,
    .advantages-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-content {
      order: -1;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 3rem;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 2rem;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  