/* Placeholder image for team members */
.team-image-container img.team-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* Fix for duplicate content at the end of the page */
.team-member:last-child {
  margin-bottom: 2rem;
}

/* Fix for mobile navigation display */
@media (max-width: 768px) {
  header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
  }
  
  .mobile-menu-btn:focus {
    outline: none;
  }
}

/* Fix for expertise visualization on mobile */
@media (max-width: 576px) {
  .expertise-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 2rem 0;
  }
  
  .expertise-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .expertise-item {
    position: static !important;
    transform: none !important;
    margin: 1rem 0 !important;
    width: 100%;
    max-width: 300px;
  }
  
  .expertise-center {
    position: static !important;
    transform: none !important;
    margin: 1rem 0 2rem !important;
  }
}

/* Fix for content grid on mobile */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .content-image {
    text-align: center;
  }
  
  .content-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Fix for team grid on mobile */
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
}

/* Fix for footer on mobile */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  footer .footer-logo {
    margin-bottom: 2rem;
  }
  
  footer .footer-links {
    margin-bottom: 2rem;
  }
}
