body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #111;
  line-height: 1.6;
}

header {
  background-color: #f0f0f0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

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

nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  padding: 2rem 1rem;
}

.icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: #d4ecff; /* light blue */
  color: #111;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card .icon {
  font-size: 2rem;
  color: white;
  background-color: #4da6ff;
  padding: 0.6rem;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid white;
  border-radius: 12px;
  background-color: #d4ecff;
  padding: 1.5rem;
  margin-top: 3rem;
  gap: 2rem;
  align-items: center;
}

.about-card-left,
.about-card-right {
  flex: 1;
  min-width: 280px;
}

.about-card-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-left img {
  max-height: 200px;
  width: auto;
  border-radius: 10px;
}

.about-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-right h2 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-card-right p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-card .learn-more {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #4da6ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-card .learn-more:hover {
  background-color: #368cd1;
}

.about {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
  background-color: #f9fbff;
  border-radius: 12px;
  overflow: hidden;
}

.about-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 1rem;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.learn-more {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #4da6ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #368cd1;
}
