/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-subtitle {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2563eb;
}

.section-description {
  font-size: 1.125rem;
  text-align: center;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.text-primary {
  color: #2563eb;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1f2937;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("./images/hero-banner.png?v=5");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Welcome Section */
.welcome {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.welcome .container {
  position: relative;
  z-index: 2;
}

.welcome-header {
  text-align: center;
  margin-bottom: 4rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.promise-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.promise-card:hover {
  border-color: #bfdbfe;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.promise-icon {
  margin-bottom: 1rem;
}

.promise-icon i {
  font-size: 3rem;
  color: #2563eb;
}

.promise-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.promise-description {
  color: #6b7280;
  line-height: 1.6;
}

.tagline {
  text-align: center;
  margin-bottom: 3rem;
}

.tagline p {
  font-size: 1.125rem;
  font-style: italic;
  color: #374151;
}

.experience-section {
  text-align: center;
  background: #eff6ff;
  padding: 2rem;
  border-radius: 12px;
}

.experience-text {
  font-size: 1.125rem;
  color: #1f2937;
  font-weight: 500;
}

/* Featured Service Section */
.featured-service {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background-image: url('images/learning-disability-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 500px;
}

.featured-text {
  padding-right: 2rem;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.featured-text .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 700;
}

.featured-text .section-description {
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
  font-weight: 500;
}

.featured-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.featured-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000000;
  font-weight: 600;
  justify-content: center;
  width: 100%;
}

.featured-feature i {
  color: #2563eb;
  font-size: 1.2rem;
  width: 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f9fafb;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.feature i {
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.feature-content p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Recruitment Section */
.recruitment {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.recruitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.recruitment .container {
  position: relative;
  z-index: 2;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.recruitment-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.recruitment-card:hover {
  border-color: #bfdbfe;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.recruitment-icon {
  margin-bottom: 1rem;
}

.recruitment-icon i {
  font-size: 2rem;
  color: #2563eb;
}

.recruitment-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.recruitment-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.recruitment-details h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.recruitment-details p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Process Section */
.process-section {
  background-color: #eff6ff;
  padding: 3rem;
  border-radius: 12px;
}

.process-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 48px;
  height: 48px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.process-step p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9fafb;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item i {
  color: #2563eb;
  width: 20px;
}

.commitment-box {
  background-color: #eff6ff;
  padding: 1.5rem;
  border-radius: 8px;
}

.commitment-box h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.commitment-box p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Form Styles */
.form-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.form-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Learning Disability Support Page Styles */
.hero-learning {
  background: url('./images/learning-disability-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 15rem 0 8rem 0;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

.hero-learning .container {
  position: relative;
  z-index: 2;
}

.hero-learning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-learning h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-learning .subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 300;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-learning .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-learning .btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-learning .btn-primary {
  background: white;
  color: #2563eb;
  border: 2px solid white;
}

.hero-learning .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-learning .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-learning .btn-outline:hover {
  background: white;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-section {
  padding: 4rem 0;
  background: #f8f9fa;
  position: relative;
}

.service-section:nth-child(even) {
  background: white;
}

.service-section .container {
  position: relative;
  z-index: 2;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1rem;
  text-align: center;
}

.service-title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.info-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info-box h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.8);
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    min-height: 70vh;
    background-image: url("./images/hero-banner.png?v=5");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promise-grid,
  .services-grid,
  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card,
  .recruitment-card,
  .process-step {
    padding: 1.5rem;
    margin: 0;
  }
  
  .service-title,
  .recruitment-title {
    font-size: 1.3rem;
  }
  
  .service-description,
  .recruitment-description {
    font-size: 0.95rem;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-text {
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem;
  }
  
  .featured-text .section-title {
    text-align: center;
    font-size: 1.8rem;
  }
  
  .featured-text .section-description {
    text-align: center;
    font-size: 1rem;
  }
  
  .featured-features {
    align-items: center;
    justify-content: center;
  }
  
  .featured-feature {
    justify-content: center;
    text-align: center;
  }
  
  /* Additional mobile optimizations */
  .service-icon {
    font-size: 2.5rem !important;
  }
  
  .process-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .services-grid,
  .recruitment-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card,
  .recruitment-card,
  .process-step {
    padding: 1.25rem;
  }
  
  .service-title,
  .recruitment-title {
    font-size: 1.2rem;
  }
  
  .service-description,
  .recruitment-description {
    font-size: 0.9rem;
  }
  
  .service-icon {
    font-size: 2rem !important;
  }
  
  .process-number {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .featured-text {
    padding: 1rem;
  }
  
  .featured-text .section-title {
    font-size: 1.6rem;
  }
  
  .featured-text .section-description {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .featured-features {
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .featured-feature {
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
  }

  .hero-learning {
    padding: 8rem 0 4rem 0;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-learning h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-learning .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-learning .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-learning .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Form improvements for mobile */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Job application form mobile improvements */
  .job-application-form input,
  .job-application-form textarea,
  .job-application-form select {
    font-size: 16px;
  }

  /* Service cards mobile improvements */
  .service-card {
    padding: 1.5rem;
  }

  /* Process steps mobile improvements */
  .process-step {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 60vh;
    background-image: url("./images/hero-banner.png?v=5");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .services,
  .recruitment,
  .welcome,
  .contact {
    padding: 60px 0;
  }

  .logo {
    height: 40px;
  }

  .hero-learning {
    padding: 6rem 0 3rem 0;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-learning h1 {
    font-size: 2rem;
  }
  
  .hero-learning .subtitle {
    font-size: 1rem;
  }

  /* Additional mobile improvements */
  .service-card {
    padding: 1rem;
  }

  .process-step {
    padding: 1rem;
  }

  .contact-form,
  .job-application-form {
    padding: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
