/* General */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.header h1 span {
  color: #d1d1d1;
}

.header p {
  color: #aaa;
  font-size: 1.1rem;
}

/* Why Us Section */
.why-us {
  padding: 70px 20px 100px;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.reason {
  background: #141414;
  border: 1px solid #222;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.06);
  border-color: #333;
}

.reason .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.reason h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.reason p {
  color: #b3b3b3;
  font-size: 0.95rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #0f0f0f;
  border-top: 1px solid #1c1c1c;
}

.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 25px;
}

.btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #e5e5e5;
}

/* Footer */
.footer {
  background-color: #000;
  text-align: center;
  padding: 30px;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #1c1c1c;
}
