body {
  min-height: 100vh;
  background-color: #fffff7;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  color: #012B59;
}

.why-us-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.1);
}

.image-section {
  position: relative;
  height: 300px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section .graphic-element {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #51D7AE; /* Main color */
  clip-path: ellipse(80% 100% at 50% 100%);
}

.image-section .graphic-element::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  border-top: 4px dashed white;
  opacity: 0.8;
}

.image-section .graphic-element::after {
  content: '';
  position: absolute;
  top: -100px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: #FEA933; /* Main color 2 */
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

.content-section {
  background-color: #51D7AE; /* Main color */
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.content-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.features-list li {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.section-divider {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 3rem auto;
  width: 80%;
  max-width: 600px;
}

.why-hire-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-card p {
  margin: 0;
  line-height: 1.6;
  color: white;
}

/* Specific icon background colors using the new palette */
.benefit-card:nth-child(1) .benefit-icon { background-color: #FFDE59; color: #012B59} /* Piggy bank - Accent 2 */
.benefit-card:nth-child(2) .benefit-icon { background-color: #fff; } /* Flag */
.benefit-card:nth-child(3) .benefit-icon { background-color: #51D7AE; } /* User - Main 1 */
.benefit-card:nth-child(4) .benefit-icon { background-color: #FEA933; } /* Tax - Main 2 */
.benefit-card:nth-child(5) .benefit-icon { background-color: #B1C25B; } /* Lock - Accent 1 */

@media (max-width: 768px) {
  .content-section {
    padding: 2rem 1.5rem;
  }
  .content-section h2 {
    font-size: 2rem;
  }
  .content-section p {
    font-size: 1rem;
  }
  .features-list li {
    font-size: 1.1rem;
  }
  .why-hire-us-title {
    font-size: 2rem;
  }
  .benefit-card {
    padding: 1.2rem;
    gap: 1rem;
  }
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .content-section h2 {
    font-size: 1.8rem;
  }
  .content-section p {
    font-size: 0.95rem;
  }
  .features-list li {
    font-size: 1rem;
  }
  .why-hire-us-title {
    font-size: 1.8rem;
  }
  .benefit-card {
    padding: 1rem;
    gap: 0.8rem;
  }
  .benefit-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.9rem;
  }
} 