body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3e3c3;
  color: #222;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  align-items: center;
}

.hero-text {
  max-width: 500px;
}

.small {
  color: #4a6ee0;
  font-size: 14px;
}

h1 {
  font-size: 42px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  background: #3f5ed7;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  min-height: 48px;
}
.tagline {
  margin-top: 20px;
  color: #d25a2b;
}

.hero-image img {
  width: 350px;
  border-radius: 20px;
}

.services {
  background: #b7a98c;
  padding: 50px;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #e8b78b;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.about {
  padding: 50px;
}

.testimonials {
  padding: 50px;
  background: #f7efe1;
}

blockquote {
  margin-bottom: 20px;
  font-style: italic;
}

footer {
  background: #222;
  color: white;
  padding: 30px;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3e3c3;
  padding: 20px 40px;
  border-bottom: 1px solid #ccc;
}

.nav-logo {
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}


.access {
  padding: 60px;
  text-align: center;
}

.access h1 {
  margin-bottom: 40px;
}

.access-box a {
  display: inline-block;
  padding: 16px 20px;
  min-height: 48px;
}

.access-box.light {
  background: #e8b78b;
}

.access-box.dark {
  background: #b7a98c;
}

.access-box.large {
  text-align: left;
}

.access-box a {
  color: black;
  text-decoration: underline;
}

.access-box ul {
  text-align: left;
}

.resources {
  padding: 60px;
  text-align: center;
}

.resources h1 {
  margin-bottom: 40px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card {
  background: #e8b78b;
  padding: 25px;
  border-radius: 20px;
  text-align: left;
}

.resource-card.full {
  grid-column: span 3;
  max-width: 600px;
  margin: 0 auto;
}

.resource-card h3 {
  margin-bottom: 15px;
}

.resource-card ul {
  list-style: none;
  padding: 0;
}

.resource-card li {
  margin-bottom: 10px;
}

.resource-card a {
  color: black;
  text-decoration: underline;
}

/* ---------- GLOBAL MOBILE FIXES ---------- */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    text-align: left;
  }

  .hero-image img {
    width: 100%;
    margin-top: 20px;
  }

  h1 {
    font-size: 32px;
  }

  /* SERVICES CARDS */
  .cards {
    flex-direction: column;
  }

  /* ACCESS PAGE */
  .access {
    padding: 30px 20px;
  }

  .access-box {
    width: 100%;
    margin: 20px 0;
  }

  /* RESOURCES GRID */
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card.full {
    grid-column: span 1;
  }

  /* GENERAL SECTIONS */
  .services,
  .about,
  .testimonials {
    padding: 30px 20px;
  }
}

/* NAV TOP ROW */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* DEFAULT NAV */
.nav-links {
  display: flex;
  gap: 25px;
}
.about-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-header h1 {
  margin-top: 10px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.highlight {
  font-weight: 600;
  color: #d25a2b;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .about-page {
    padding: 30px 20px;
  }

  .about-header img {
    width: 140px;
    height: 140px;
  }
}
/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    background: #f3e3c3;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 20px;
  }
}