body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f8fc;
  color: #333;
}

.header {
  background-color: #f25a40;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.evaluation-intro {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 5%;
  align-items: center;
  gap: 40px;
}

.intro-image {
  flex: 1 1 400px;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-text {
  flex: 1 1 400px;
}

.intro-text h2 {
  color: #f25a40;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.intro-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.evaluation-section {
  padding: 40px 5%;
  background-color: #ffffff;
}

.evaluation-section h2 {
  font-size: 1.8rem;
  color: #f25a40;
  margin-bottom: 25px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  color: #555;
}

.benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f25a40;
  font-weight: bold;
}

.cta-section {
  background-color: #e0f2f1;
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  font-size: 1.8rem;
  color: #f25a40;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
}

.cta-section .btn {
  background-color: #e26953;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-section .btn:hover {
  background-color: #f25a40;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #f0f0f0;
  color: #555;
}
