
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 0.75em;
  color: #2577b5;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 800px;
  line-height: 1.7;
  color: #333;
}

.team-section {
  margin-bottom: 4rem;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 320px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2577b5;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover img {
  border-color: #1f2c3a;
  transform: scale(1.05);
}

.card h3 {
  color: #1f2c3a;
}

.card p em {
  color: #2577b5;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}


@media (min-width: 768px) {
  .about-section {
    font-size: 1.2rem;
  }

  .cards-container {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
