/* ===== Base ===== */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f6fb;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
  margin: 0 0 15px;
  font-weight: 700;
  color: #9B6CE3;
  text-align: center; /* Center all headings by default */
  font-size: 2rem;
}

h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  font-weight: 700;
  color: #333;
  text-align: center; /* Center all headings by default */
  font-size: 1.7rem;
}

h1  {margin-top: 35px;}  /* Extra top margin for main title */

p {
margin: 0 0 15px;
color: #333;
font-size: 1.05em;
}

/* ===== Section Container ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* Center all content by default */
  }

/* ===== Buttons ===== */
button, .btn {
  background-color: #9B6CE3;
  color: #fff;
  border: 1px solid #e8e0f5;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

button:hover, .btn:hover {
  background-color: #7B4FD6;
  transform: translateY(-2px);
}

/* ===== Vision Section ===== */
.vision {
  text-align: center;
  padding: 20px 20px;
}

.vision p {
  max-width: 750px;
  margin: 0 auto 45px;
  font-size: 1.05rem;
  color: #2c2c2c;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-items: center; /* Center grid items */
}

.vision-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 5px;
  border: 1px solid #e8e0f5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.vision-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #9B6CE3; /* Accent color */
}

.vision-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vision-card p {
  font-size: 0.95rem;
  color: #2c2c2c;
}

/* ===== Footer ===== */
footer {
  background: #e4def3;
  padding: 40px 20px;
  text-align: center;
  color: #2c2c2c;
  border-top: 1px solid #e8e0f5;
}

/* ===== Links ===== */
a {
  color: #9B6CE3;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #7B4FD6;
}

/* ===== Inputs ===== */
input, textarea, select {
  border: 1px solid #e8e0f5;
  border-radius: 5px;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #9B6CE3;
  box-shadow: 0 0 5px rgba(161, 126, 220, 0.4);
}

/* ===== Utility ===== */
.text-center {
  text-align: center;
}

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }


/* ===== Our Ethics Section ===== */
.ethics {
  padding: 50px 20px;
  text-align: center;
}

.ethics h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.ethics-card {
  background: #f8f6fb;
  border: 1px solid #e8e0f5;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 1.05rem;
  color: #2c2c2c;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: default;
  text-align: center;
}

.ethics-card p {
  font-weight: 400;
  font-size: 0.95rem;
  color: #2c2c2c;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .vision-grid, .ethics-grid {
    grid-template-columns: 1fr;
  }
}
