/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1d3666;
  background-color: #ffffff;
  /* Added top padding to compensate for removed header */
  padding-top: 40px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Removed header/hero styles as they're no longer needed */

/* Main Content */
.main {
  /* Reduced top padding since header is removed */
  padding: 20px 0 60px;
}

/* Intro Section */
.intro-section {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1d3666;
}

.section-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: #1d3666;
}

/* External job listing links */
.external-jobs-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffcfd4 100%);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  /* Reduced bottom margin since footer is removed */
  margin-bottom: 40px;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1d3666;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #1d3666;
}

/* Updated cta-btn to work with anchor tags */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  color: #1d3666;
  border: 2px solid #1d3666;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #1d3666;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 54, 102, 0.2);
  text-decoration: none;
}

/* Removed footer styles as footer is removed */

/* Responsive Design */
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }

  /* Adjusted main padding for tablet */
  .main {
    padding: 40px 0 80px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }

  /* Adjusted main padding for desktop */
  .main {
    padding: 60px 0 100px;
  }

  .intro-section {
    margin-bottom: 64px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.cta-btn:focus {
  outline: 2px solid #1d3666;
  outline-offset: 2px;
}
