/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "nexa", "tahoma", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Navigation Styles */
.navbar {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ec0048;
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu li .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu li .nav-link:hover {
  color: #ec0048;
}

/* Hamburger Menu (for mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section Styles */
/* Enhanced Hero Section Styles */
.hero-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #ec0048;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: black;
  line-height: 1.6;
  margin: 0;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image-container:hover {
  transform: translateY(-5px);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== CONSULTATION FORM STYLES ===== */

.consultation-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.consultation-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px 0;
}

.form-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: #374151;
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error .form-error {
  display: block;
}

.submit-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== THANK YOU CARD STYLES ===== */

.thank-you-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  max-width: 90%;
}

.thank-you-card.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.thank-you-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
  font-size: 24px;
}

.thank-you-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px 0;
}

.thank-you-message {
  color: #64748b;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.close-btn {
  background: #f1f5f9;
  color: #475569;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: #e2e8f0;
}

.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 5;
}

.form-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Content Section Styles */
.content-section {
  background-color: #f8f9fa;
  padding: 100px 0 80px 0;
  position: relative;
  z-index: 4;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  text-align: left;
}

.content-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 900px;
}

.content-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.content-text p {
  margin-bottom: 25px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text strong {
  font-weight: bold;
  color: #333;
}

/* Pioneering Role Section Styles */
.pioneering-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.pioneering-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pioneering-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pioneering-subtitle {
  color: #ec0048;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.pioneering-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 25px;
}

.pioneering-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

.pioneering-description strong {
  font-weight: bold;
  color: #333;
}

.pioneering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pioneering-card {
  background: transparent;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Statistics Section Styles */
.statistics-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.statistics-header {
  text-align: center;
  margin-bottom: 80px;
}

.statistics-subtitle {
  color: #ec0048;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.statistics-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin: 0;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-category {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.stat-category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #ddd;
}

.stat-number {
  font-size: 72px;
  font-weight: bold;
  color: #ec0048;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}

.stat-plus {
  font-size: 48px;
  margin-left: 5px;
}

.stat-unit {
  font-size: 24px;
  margin-left: 10px;
  color: #ec0048;
}

.stat-description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* International Team Section Styles */
.international-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.international-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.international-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.international-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.international-image-container {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background: linear-gradient(135deg, #000428 0%, #004e92 100%);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.international-image {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.international-right {
  padding-left: 20px;
}

.international-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.international-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.international-text p {
  margin-bottom: 25px;
}

.international-text p:last-child {
  margin-bottom: 0;
}

.international-text strong {
  font-weight: bold;
  color: #333;
}

.international-text em {
  font-style: italic;
  color: #ec0048;
}

/* Commitment Section Styles */
.commitment-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.commitment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.commitment-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.commitment-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.commitment-description strong {
  font-weight: bold;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-title {
  font-size: 20px;
  font-weight: bold;
  color: #ec0048;
  line-height: 1.3;
  margin-bottom: 15px;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Career Paths Section Styles */
.career-paths-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.career-paths-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.career-paths-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.career-paths-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.career-paths-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.career-paths-description strong {
  font-weight: bold;
  color: #333;
}

.career-paths-link {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.career-paths-link:hover {
  color: #ec0048;
  border-color: #ec0048;
}

.career-tracks {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.career-track {
  width: 100%;
}

.track-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.track-text {
  padding: 20px 0;
}

.track-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 25px;
}

.track-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.track-description strong {
  font-weight: bold;
  color: #333;
}

.track-button {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.track-button:hover {
  color: #ec0048;
  border-color: #ec0048;
}

.track-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.opportunity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.opportunity-list li::before {
  content: "•";
  color: #ec0048;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.opportunity-link {
  color: #555;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.opportunity-link:hover {
  color: #ec0048;
}

/* Contact Section Styles */
.contact-section {
  background-color: #e8f4f8;
  padding: 80px 0;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left {
  padding-right: 20px;
}

.contact-subtitle {
  color: #ec0048;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.contact-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 25px;
}

.contact-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.contact-button {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image-container {
  width: 100%;
  max-width: 400px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Footer Section Styles */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 30px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-text {
  max-width: 400px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-label {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #ccc;
  border: 1px solid #444;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
  border-color: #666;
  background-color: #333;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
}

.legal-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.legal-link {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ccc;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-content {
    gap: 30px;
  }

  .hero-title {
    font-size: 48px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero-image-container {
    width: 900px;
    height: 505px;
  }

  .hero-section {
    padding: 50px 0 90px 0;
    min-height: 45vh;
  }

  .hero-right {
    margin-top: -40px;
  }

  .content-title {
    font-size: 36px;
  }

  .content-text {
    font-size: 17px;
  }

  .content-container {
    padding: 0 15px;
  }

  .pioneering-title {
    font-size: 42px;
  }

  .pioneering-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .pioneering-container {
    padding: 0 15px;
  }

  .statistics-title {
    font-size: 42px;
  }

  .statistics-grid {
    gap: 40px;
  }

  .statistics-container {
    padding: 0 15px;
  }

  .stat-number {
    font-size: 60px;
  }

  .stat-plus {
    font-size: 40px;
  }

  .international-content {
    gap: 40px;
  }

  .international-title {
    font-size: 36px;
  }

  .international-text {
    font-size: 17px;
  }

  .international-container {
    padding: 0 15px;
  }

  .international-image-container {
    height: 300px;
  }

  .commitment-title {
    font-size: 36px;
  }

  .commitment-description {
    font-size: 17px;
  }

  .commitment-container {
    padding: 0 15px;
  }

  .benefits-grid {
    gap: 25px;
  }

  .career-paths-title {
    font-size: 36px;
  }

  .career-paths-description {
    font-size: 17px;
  }

  .career-paths-container {
    padding: 0 15px;
  }

  .track-content {
    gap: 40px;
  }

  .track-title {
    font-size: 32px;
  }

  .track-description {
    font-size: 17px;
  }

  .career-image {
    height: 250px;
  }

  .contact-content {
    gap: 50px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-description {
    font-size: 17px;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-image-container {
    height: 300px;
  }

  .footer-content {
    gap: 50px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-links {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 42px;
    max-width: 100%;
  }

  .hero-image-container {
    width: 700px;
    height: 393px;
  }

  .hero-section {
    padding: 40px 0 80px 0;
    min-height: 40vh;
  }

  .hero-right {
    margin-top: -30px;
  }

  .content-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .content-text {
    font-size: 16px;
  }

  .content-section {
    padding: 80px 0 60px 0;
  }

  .pioneering-title {
    font-size: 36px;
  }

  .pioneering-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pioneering-section {
    padding: 60px 0;
  }

  .pioneering-header {
    margin-bottom: 40px;
  }

  .statistics-title {
    font-size: 36px;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }

  .statistics-section {
    padding: 60px 0;
  }

  .statistics-header {
    margin-bottom: 50px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-plus {
    font-size: 32px;
  }

  .stat-unit {
    font-size: 20px;
  }

  .international-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .international-title {
    font-size: 32px;
  }

  .international-text {
    font-size: 16px;
  }

  .international-section {
    padding: 60px 0;
  }

  .international-right {
    padding-left: 0;
  }

  .international-image-container {
    height: 280px;
    max-width: 400px;
    margin: 0 auto;
  }

  .commitment-title {
    font-size: 32px;
  }

  .commitment-description {
    font-size: 16px;
  }

  .commitment-section {
    padding: 60px 0;
  }

  .commitment-header {
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit-card {
    padding: 25px;
  }

  .career-paths-title {
    font-size: 32px;
  }

  .career-paths-description {
    font-size: 16px;
  }

  .career-paths-section {
    padding: 60px 0;
  }

  .career-paths-header {
    margin-bottom: 50px;
  }

  .career-tracks {
    gap: 50px;
  }

  .track-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .track-title {
    font-size: 28px;
  }

  .track-description {
    font-size: 16px;
  }

  .career-image {
    height: 250px;
    max-width: 350px;
    margin: 0 auto;
  }

  .opportunity-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-left {
    padding-right: 0;
  }

  .contact-image-container {
    height: 280px;
    max-width: 350px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .footer-links {
    gap: 40px;
  }

  .legal-links {
    gap: 20px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero-image-container {
    width: 400px;
    height: 225px;
    border: 4px solid white;
  }

  .hero-section {
    padding: 30px 0 60px 0;
    min-height: 35vh;
  }

  .hero-right {
    margin-top: -20px;
  }

  .hero-section::after {
    bottom: -150px;
    height: 200px;
  }

  .content-title {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .content-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .content-text p {
    margin-bottom: 20px;
  }

  .content-section {
    padding: 60px 0 50px 0;
  }

  .content-container {
    padding: 0 10px;
  }

  .pioneering-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .pioneering-description {
    font-size: 16px;
  }

  .pioneering-section {
    padding: 50px 0;
  }

  .pioneering-header {
    margin-bottom: 30px;
  }

  .pioneering-container {
    padding: 0 10px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .card-description {
    font-size: 15px;
  }

  .statistics-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .statistics-section {
    padding: 50px 0;
  }

  .statistics-header {
    margin-bottom: 40px;
  }

  .statistics-container {
    padding: 0 10px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-plus {
    font-size: 28px;
  }

  .stat-unit {
    font-size: 16px;
  }

  .stat-category {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .stat-description {
    font-size: 14px;
  }

  .international-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .international-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .international-text p {
    margin-bottom: 20px;
  }

  .international-section {
    padding: 50px 0;
  }

  .international-container {
    padding: 0 10px;
  }

  .international-image-container {
    height: 250px;
    max-width: 350px;
  }

  .commitment-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .commitment-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .commitment-section {
    padding: 50px 0;
  }

  .commitment-header {
    margin-bottom: 30px;
  }

  .commitment-container {
    padding: 0 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .benefit-description {
    font-size: 15px;
  }

  .career-paths-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .career-paths-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .career-paths-section {
    padding: 50px 0;
  }

  .career-paths-header {
    margin-bottom: 40px;
  }

  .career-paths-container {
    padding: 0 10px;
  }

  .career-tracks {
    gap: 40px;
  }

  .track-content {
    gap: 25px;
  }

  .track-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .track-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .career-image {
    height: 200px;
    max-width: 300px;
  }

  .opportunity-list {
    font-size: 15px;
    max-width: 250px;
  }

  .opportunity-list li {
    padding: 6px 0;
  }

  .contact-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .contact-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-container {
    padding: 0 10px;
  }

  .contact-image-container {
    height: 250px;
    max-width: 300px;
  }

  .contact-button {
    padding: 12px 25px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-container {
    padding: 0 10px;
  }

  .footer-content {
    margin-bottom: 30px;
  }

  .footer-left {
    gap: 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .legal-links {
    gap: 15px;
    flex-direction: column;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 50px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .consultation-form-container {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }

  .consultation-form-container {
    padding: 25px 20px;
  }

  .thank-you-card {
    padding: 30px 25px;
  }
}
