/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  p {
    font-size: 0.9rem;
  }

  .hero {
    text-align: center;
    padding: 2rem 0;
  }

  .team-image {
    width: 120px;
    height: 120px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  footer {
    padding: 3rem 0 2rem;
    text-align: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 2.25rem;
  }
  
  .hero {
    text-align: center;
  }

  footer {
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    font-size: 2.25rem;
  }

  h1 {
    font-size: 2.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.75rem;
  }

  h1 {
    font-size: 3.25rem;
  }
}

/* Media query for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .card:hover {
    transform: none !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  }

  .feature-item:hover {
    transform: none !important;
  }

  .gallery-item:hover .gallery-image {
    transform: none !important;
  }
} 

.hero-content {
    padding-top: 100px;
}