/* about.css */

body {
  background-color: #f5f5f5;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  overflow-x: hidden;
}

.why-page {
  padding: 2rem 1rem;
  margin-top: 130px;
}

.why-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  overflow: hidden;
}

.why-card .why-text,
.why-card .why-image {
  flex: 1 1 300px;
  padding: 2rem;
}

.why-card .why-text h1,
.why-card .why-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.why-card .why-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.why-card .why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.cta-wrapper {
  text-align: center;
  margin: 2rem auto;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #e45500;
}

