/* GENERAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

/* HEADER */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #0b5ed7;
  color: #fff;
}

.about-header a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.about-header a:hover {
  text-decoration: underline;
}

/* INTRO SECTION */
.about-intro {
  text-align: center;
  padding: 60px 20px;
}

.about-intro h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0b5ed7;
}

.about-intro p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* TEAM SECTION */
.team-section {
  padding: 40px 20px;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 25px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #0b5ed7;
}

.team-card p {
  font-size: 14px;
  color: #555;
}
.topic {
  padding: 10px;
  space-between: 10px;
  font-size: 20px;
}