:root {
  --primary-dark: #0b132b;
  --primary-mid: #2274a5;
  --primary-light: #00e5ff;
  --secondary: #6e00ff;
  --tertiary: #00ffaa;
  --background: #f8faff;
  --text: #333344;
  --card-bg: #ffffff;
}

html{
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--primary-dark);
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
}

.contact-info i {
  margin-right: 5px;
  color: var(--primary-light);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
  
}

.social-links a:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo{
  width: 180px;
  height: auto;
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: shine 7s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
}

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

.nav-menu a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-mid);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary-mid);
}

.contact-btn {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.contact-btn:hover::before {
  left: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), #192742);
  overflow: hidden;
}

.dna-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.15), transparent 70%),
             radial-gradient(circle at 80% 70%, rgba(110, 0, 255, 0.1), transparent 70%);
  z-index: 0;
}

.dna-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
  color: white;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 229, 255, 0.1);
  border-left: 3px solid var(--primary-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.hero-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-light);
  animation: pulseLight 3s infinite;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content h1 span {
  background: linear-gradient(90deg, var(--primary-light), var(--tertiary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-light), var(--tertiary));
  opacity: 0.3;
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0px 20px rgba(0, 229, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.primary-btn i {
  transition: transform 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 30px rgba(0, 229, 255, 0.35);
}

.primary-btn:hover i {
  transform: translateX(5px);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-5px);
}

.hero-image {
  position: relative;
  width: 500px;
  height: 400px;
  background: url('/api/placeholder/500/400') center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(110, 0, 255, 0.2));
  z-index: 1;
}

.floating-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(5px);
  animation: float 8s infinite ease-in-out;
  z-index: 2;
}

.particle-1 {
  top: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  left: 70%;
  width: 70px;
  height: 70px;
  background: var(--secondary);
  animation-delay: 2s;
}

.particle-3 {
  top: 70%;
  left: 30%;
  width: 40px;
  height: 40px;
  background: var(--tertiary);
  animation-delay: 4s;
}

/* Mission Section */
.mission-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-highlight {
  color: var(--primary-mid);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-highlight::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-mid), var(--primary-light));
}

.mission-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 0;
  display: flex;
  position: relative;
  z-index: 1;
}

.mission-graphic {
  flex: 0 0 40%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite;
}

.helix-animation {
  width: 100px;
  height: 300px;
  position: relative;
  transform: rotate(30deg);
  animation: rotateHelix 20s linear infinite;
}

.helix-strand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(180deg, 
    var(--primary-light), var(--primary-light) 5px, 
    transparent 5px, transparent 20px);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 300'%3E%3Cpath d='M50,0 Q80,75 50,150 Q20,225 50,300' stroke='%23000' stroke-width='10' fill='none'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.mission-content {
  flex: 0 0 60%;
  padding: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-mid), var(--primary-light));
}

.mission-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
}

.mission-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-mid);
  line-height: 1;
  background: linear-gradient(90deg, var(--primary-mid), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-top: 5px;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  position: relative;
  background-color: rgba(0, 229, 255, 0.03);
  overflow: hidden;
}

.team-header-row {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.team-photo-compact {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.photo-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.team-photo-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo-hover {
  transform: scale(1.05);
}

.team-meta {
  display: flex;
  flex-direction: column;
}

.tech-background {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}

.tech-line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0.5;
}

.tech-line:nth-child(1) {
  top: 20%;
  animation: techLine 15s linear infinite;
}

.tech-line:nth-child(2) {
  top: 50%;
  animation: techLine 20s linear infinite reverse;
}

.tech-line:nth-child(3) {
  top: 80%;
  animation: techLine 18s linear infinite 2s;
}

.section-title-container {
  text-align: center;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.team-photo-container {
  padding: 30px 0 0 30px;
  position: relative;
}

.photo-frame {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--primary-light);
  z-index: 1;
}

.corner-top-left {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-top-right {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-bottom-left {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.corner-bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.indicator {
  width: 30px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1.5px;
}

.indicator.active {
  background: linear-gradient(90deg, var(--primary-mid), var(--primary-light));
}

.team-info {
  padding: 30px;
  flex: 1;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.team-name {
  font-size: 1.8rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0;
}

.badge {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: white;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
}

.team-role {
  color: var(--primary-mid);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
  
}

.team-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.team-quote {
  background-color: rgba(0, 229, 255, 0.05);
  border-left: 3px solid var(--primary-light);
  padding: 20px;
  font-style: italic;
  margin-bottom: 20px;
  border-radius: 0 10px 10px 0;
  position: relative;
}

.quote-icon {
  color: var(--primary-light);
  opacity: 0.3;
  font-size: 1.5rem;
  margin-right: 10px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-mid);
  transition: all 0.3s ease;
  text-decoration: none
}

.social-link:hover {
  background-color: var(--primary-mid);
  color: white;
  transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), #192742);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.2), transparent 70%);
}

.cta-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content {
  max-width: 600px;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.molecule-model {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 60s linear infinite;
}

.molecule-model::before,
.molecule-model::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.3);
}

.molecule-model::before {
  transform: rotateX(60deg);
}

.molecule-model::after {
  transform: rotateY(60deg);
}

/* Footer */
.footer-top {
  background-color: #0f1a2e;
  padding: 80px 0 60px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

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

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  margin-right: 0;
  transition: all 0.3s ease;
  color: var(--primary-light);
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 10px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-light);
}

.footer-bottom {
  background-color: #0a1222;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes rotateHelix {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(390deg);
  }
}

@keyframes techLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseLight {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-image {
    width: 400px;
    height: 320px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-tag {
    margin: 0 auto 25px;
  }
  
  .hero-tag::before {
    display: none;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .mission-card {
    flex-direction: column;
  }
  
  .mission-graphic {
    min-height: 300px;
  }
  
  .cta-section .container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  
  .cta-content {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .top-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .nav-menu {
    order: 3;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-menu li {
    margin: 5px 10px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .team-card {
    flex-direction: column;
  }
  
  .team-photo-container {
    padding: 30px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .mission-content {
    padding: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    width: 100%;
    height: 250px;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .team-card {
    border-radius: 15px;
  }
  
  .footer-bottom {
    text-align: center;
  }
}