/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --primary: #2ecc71;
  --secondary: #1e90ff;
  --dark: #222;
  --light: #f9f9f9;
  --text: #333;
}

/* BASE */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--light);
  color: var(--text);
}

section {
  padding: 70px 0;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

h1, h2, h3 {
  color: var(--dark);
}

h2 {
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

/* HERO */
#hero {
  background: linear-gradient(135deg, #f0fff6, #ffffff);
  text-align: center;
}

.hero-section h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
}

.badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.tagline {
  margin: 20px 0;
  font-size: 1.05rem;
}

.hero-proof {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--primary);
}

.btn.secondary {
  background: var(--secondary);
}

.cta-group,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

/* COURSES */
.course-listing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.course-item {
  flex: 1 1 30%;
  background: var(--light);
  padding: 22px;
  border-radius: 6px;
}

.course-item ul {
  padding-left: 18px;
}

/* WHY US */
#why-us {
  background: #f7f7f7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* RESULTS */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.result-card {
  background: var(--light);
  padding: 20px;
  border-radius: 6px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
}

/* CONTACT */
.contact-sub {
  text-align: center;
  margin-bottom: 15px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 25px;
}

.map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #fff;
  padding: 25px 0;
}

.footer-content {
  text-align: center;
}

.footer-links a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-group,
  .contact-actions {
    flex-direction: column;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .course-item {
    flex: 1 1 100%;
  }
}}}

/* POLICY PAGES (Privacy & Terms) */
.policy-page {
max-width: 900px;
margin: 40px auto;
padding: 20px;
background: #ffffff;
border-radius: 6px;
}

.policy-page h1 {
font-size: 2rem;
margin-bottom: 20px;
}

.policy-page h2 {
font-size: 1.2rem;
margin-top: 25px;
margin-bottom: 10px;
}

.policy-page p {
margin-bottom: 15px;
color: #555;
line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
.policy-page {
margin: 20px;
padding: 15px;
}

.policy-page h1 {
font-size: 1.6rem;
}
}
