/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.container {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
}

/* General Styles */

header {
  background-color: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff;
}

header p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.6;
}

header p strong {
  color: #fff;
}

header p a {
  color: #ffd700;
  text-decoration: none;
}

header p a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.3rem;
  }

  header p {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header p strong {
    display: block;
    margin-top: 10px;
  }

  header p a {
    display: block;
    margin-top: 5px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #007bff;
  /* background: #333; */
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0rem;
}

h1,
h2,
h3 {
  color: #2c3e50;
}

main {
  p {
    color: #555;
    line-height: 1.6;
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2980b9;
}

/* Section 1: Hero Section */
.hero-section {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Section 2: Features Section */
.features-section {
  padding: 60px 20px;
  background-color: #fff;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: calc(33.333% - 40px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Section 3: Testimonial Section */
.testimonial-section {
  padding: 60px 20px;
  background-color: #f4f4f9;
}

.testimonial-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: calc(50% - 40px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-card .author-details h3 {
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-card .author-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .feature-card {
    width: calc(50% - 20px);
  }

  .testimonial-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .feature-card {
    width: 100%;
  }

  .testimonial-card {
    width: 100%;
  }
}


/* Team Members Section */
.team-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: calc(33.333% - 40px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-name {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.team-role {
  font-size: 1rem;
  color: #777;
  margin-bottom: 20px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  color: #3498db;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #2980b9;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .team-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .team-card {
    width: 100%;
  }

  .team-section h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-role {
    font-size: 0.9rem;
  }
}