:root {
  --bg: #e0e5ec; /* Soft background */
  --card: #e0e5ec; /* Card surface */
  --text: #2e2e2e; /* Readable text */
  --accent: #00aaff; /* Accent Blue */
  --accent2: #ff4da6; /* Accent Pink */
  --muted: #555; /* Muted text */
  --radius: 16px;
  --shadow-dark: #b8bcc2;
  --shadow-light: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding: 0 20px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  animation: fadeIn 1s ease-out forwards;
}
.hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease;
}
.hero h1:hover {
  color: var(--accent2);
  transform: scale(1.05);
}
.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: var(--muted);
}
.hero .subtext {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text);
  opacity: 0.8;
}

/* Who We Are */
.who-we-are {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
}
.who-we-are h2 {
  margin-bottom: 12px;
  font-size: 26px;
  color: var(--accent2);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}

/* Mission / Vision / Promise */
.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  max-width: 280px;
  flex: 1;
  text-align: center;
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}
.card h3 {
  margin-bottom: 8px;
  color: var(--accent);
}

/* Features */
.features {
  text-align: center;
  margin: 40px 0;
}
.features h2 {
  margin-bottom: 20px;
  color: var(--accent2);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.feature {
  background: var(--card);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

/* Founder */
.founder {
  text-align: center;
  margin: 40px auto;
  max-width: 700px;
}
.founder h2 {
  color: var(--accent);
}
.founder-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  justify-content: center;
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}
.founder-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}
.founder-box p {
  max-width: 500px;
  font-size: 15px;
  color: var(--text);
}

/* CTA */
.cta {
  text-align: center;
  margin: 60px 0;
}
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: var(--card);
  border: none;
  color: var(--accent2);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}
.cta-btn:hover {
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
