* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f0f4f8; /* Light blue-gray background */
  color: #333333; /* Dark gray text for readability */
  line-height: 1.6;
}

.about-section {
  padding: 60px 20px;
}

.about-container {
  width: 100%;
  margin: 0 auto;
  background: #ffffff; /* White background for container */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background: #e63946; /* Red background */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background: #b32d38; /* Darker red on hover */
  transform: translateY(-2px);
}

.about-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #006d77; /* Teal for main heading */
}

.intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  color: #555555; /* Medium gray for intro text */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #fefefe; /* Off-white card background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 1000px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  font-size: 1.5rem;
  color: #f4a261; /* Soft orange for headings */
  margin-bottom: 10px;
}

.card p,
.card ul {
  font-size: 1rem;
  color: #444444; /* Darker gray for card content */
  margin-top: 10px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

.creator-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.creator-card {
  background: #fefefe; /* Match card background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 330px;
  text-align: center;
  transition: transform 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-5px);
}

.creator-card .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  display: block;
  border: 3px solid #006d77; /* Teal border for profile picture */
}

.creator-card h3 {
  font-size: 1.3rem;
  color: #006d77; /* Teal for creator names */
  margin-bottom: 10px;
}

.creator-card p {
  text-align: start;
  font-size: 1rem;
  color: #444444; /* Darker gray for creator details */
  margin-bottom: 8px;
}

.creator-card p strong {
  color: #f4a261; /* Soft orange for strong text */
}

@media (max-width: 600px) {
  .about-container {
    padding: 20px;
  }

  .about-container h1 {
    font-size: 2rem;
  }

  .card h2 {
    font-size: 1.3rem;
  }

  .creator-card {
    max-width: 100%;
  }

  .creator-card .profile-pic {
    width: 80px;
    height: 80px;
  }

  .back-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}