/* --------------------------------------------------
CSS RESET & NORMALIZE
-------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.5; font-size: 16px; } 
body { background: #fff8fa; color: #1A232E; font-family: 'Roboto', Arial, sans-serif; min-height: 100vh; position: relative; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203A43;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

p, ul, ol, li { font-size: 1rem; color: #1A232E; font-family: 'Roboto', Arial, sans-serif; }
p { margin-bottom: 16px; }
ul, ol { padding-left: 1.25rem; margin-bottom: 18px; }
ul li, ol li { margin-bottom: 8px; }
a { color: #5DADE2; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F0C808; text-decoration: underline; }
img { max-width: 100%; border-radius: 8px; }

/* --------------------------------------------------
PASTEL COLOR SCHEME - SOFT, DREAMY, MODERN
-------------------------------------------------- */
:root {
  --brand-primary: #203A43;
  --brand-secondary: #F0C808;
  --brand-accent: #fff;
  --pastel-blue: #cde8f6;
  --pastel-pink: #ffe5ed;
  --pastel-peach: #fff5e3;
  --pastel-lavender: #e6e9fa;
  --pastel-mint: #dcf7ec;
  --pastel-green: #d9f5c8;
  --text-dark: #203A43;
  --text-medium: #484f5a;
  --shadow: 0 4px 12px rgba(32,58,67, 0.10);
}

body {
  background: var(--pastel-pink);
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

/* --------------------------------------------------
LAYOUT CONTAINERS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: transparent;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-lavender);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------
MAIN NAVIGATION & HEADER
-------------------------------------------------- */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 2px 12px rgba(32,58,67,0.06);
  position: sticky; top: 0; z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 0 20px;
  height: 68px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
}
.main-nav img {
  height: 40px;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav a {
  color: var(--brand-primary);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 1rem;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover:not(.cta-button), .main-nav a:focus:not(.cta-button) {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cta-button {
  background: linear-gradient(90deg, #ffe89d 0%, #ffd5e5 100%);
  color: var(--brand-primary) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 12px 28px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(32,58,67,0.07);
  transition: background 0.16s, color 0.16s, transform 0.15s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #fef6cd 0%, #f9b7e7 100%);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(32,58,67,0.10);
}

/*
--------------------------------------------------
MOBILE NAVIGATION (BURGER MENU)
--------------------------------------------------
*/
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  padding: 7px 15px 9px;
  position: absolute;
  top: 13px;
  right: 16px;
  cursor: pointer;
  z-index: 202;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-peach);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #fff5e3 0%, #ffe5ed 100%);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.71, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 12px 36px 0 rgba(32,58,67,0.1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  font-size: 2rem;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border: none;
  border-radius: 14px;
  padding: 4px 15px 6px 12px;
  cursor: pointer;
  z-index: 204;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-peach);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 0 30px;
}
.mobile-nav a {
  color: var(--brand-primary);
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 16px 0;
  width: 100%;
  border-radius: 12px;
  transition: background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
}

@media (max-width: 1024px){
  .main-nav {
    gap: 16px;
    padding-right: 12px;
    font-size: 1rem;
  }
}
@media (max-width: 900px)
{
  .main-nav .cta-button { padding: 12px 18px; font-size: 0.95rem; margin-left: 7px; }
  .main-nav {gap: 12px;}
}
@media (max-width: 768px){
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --------------------------------------------------
HERO SECTIONS
-------------------------------------------------- */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #ffe5ed 0%, #e6e9fa 80%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 4px 20px rgba(32,58,67,0.09);
  min-height: 220px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding: 40px 0 20px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  background: none;
}
.hero p { color: var(--text-medium); font-size: 1.20rem; max-width: 520px; }

/* --------------------------------------------------
SECTION & CARD PATTERNS
-------------------------------------------------- */
.features, .services, .about, .about-mission, .team, .about-clarity, .process-features, .about-offer, .about-district, .districts-features, .district-support, .guide-features, .about-info, .contact-guide, .contact-details, .contact-form-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-lavender);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(32,58,67,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(32,58,67,0.17);
  transform: scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-peach);
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 18px;
}

/* List Icons (Features & Services) */
.features ul, .services ul, .about-mission ul, .team ul, .districts-features ul, .about-district ul, .guide-features ul, .contact-guide ul, .contact-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.features li, .services li, .about-mission li, .team li, .districts-features li, .about-district li, .guide-features li, .contact-guide li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  background: var(--pastel-blue);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 42px;
}
.features li img, .services li img, .contact-guide li img, .contact-details li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 4px;
}
.services li, .about-mission li, .team li, .districts-features li, .about-district li, .guide-features li {
  background: var(--pastel-mint);
}

/* Ordered process steps */
.process-features ol {
  list-style: decimal inside;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 0;
}
.process-features ol li {
  background: var(--pastel-lavender);
  border-radius: 10px;
  padding: 13px 17px 13px 40px;
  color: var(--text-dark);
  font-size: 1.1rem;
  position: relative;
}
.process-features ol li::marker { color: var(--brand-secondary); font-weight: bold; font-size: 1.2em; }

/* --------------------------------------------------
TESTIMONIALS
-------------------------------------------------- */
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--pastel-mint);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,58,67,0.06);
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C2C33;
  max-width: 580px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,58,67,0.12);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #252C35;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #566672;
  font-style: normal;
  font-weight: 500;
}

/* --------------------------------------------------
FORMS (Contact Form Section Button)
-------------------------------------------------- */
.contact-form-section a.cta-button {
  margin-top: 10px;
}

/* --------------------------------------------------
FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  background: linear-gradient(90deg, #fff5e3 0%, #e6e9fa 100%);
  padding: 32px 0 16px 0;
  margin-top: 80px;
  box-shadow: 0 -2px 14px rgba(32,58,67,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 6px;
}
footer nav.footer-menu a {
  color: var(--brand-primary);
  font-size: 0.99rem;
  opacity: 0.85;
  transition: opacity 0.13s, color 0.22s;
}
footer nav.footer-menu a:hover, footer nav.footer-menu a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
footer img {
  height: 30px;
}
footer p {
  font-size: 0.97rem;
  color: #5b6371;
}

/* --------------------------------------------------
COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #ffe5ed 0%, #ffe89d 100%);
  color: #233550;
  box-shadow: 0 -2px 18px rgba(32,58,67,0.07);
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  gap: 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookie-fadein 0.5s;
}
@keyframes cookie-fadein { from { transform: translateY(80%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p { flex: 3 1 400px; margin-bottom: 0; }
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  color: var(--brand-primary);
  font-size: 1rem;
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px rgba(32,58,67,0.07);
  transition: background 0.15s, color 0.13s, box-shadow 0.14s;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--pastel-peach);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,58,67,0.15);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.22s;
}
@keyframes fadeinModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--pastel-lavender);
  border-radius: 22px;
  box-shadow: 0 4px 36px rgba(32,58,67,0.19);
  padding: 32px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: modalpop .25s;
}
@keyframes modalpop { from { transform: scale(0.86); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal h3 {
  font-size: 1.37rem;
  color: var(--brand-primary);
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--brand-secondary);
  width: 21px;
  height: 21px;
}
.cookie-category .category-label {
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 14px;
}
.cookie-modal .cookie-modal-close {
  background: var(--pastel-mint);
  color: var(--brand-primary);
  border-radius: 13px;
  border: none;
  font-size: 1.22rem;
  margin-left: 7px;
  padding: 7px 18px 7px 13px;
  align-self: flex-end;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--pastel-peach);
}

/* Essential cookies always enabled */
.cookie-category.essential input[disabled] {
  filter: grayscale(96%) opacity(0.6);
  cursor: not-allowed;
}

@media (max-width: 670px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10vw 14px 10vw;
    gap: 17px;
    font-size: 0.96rem;
  }
}

/* --------------------------------------------------
MICRO-INTERACTIONS, HOVER EFFECTS & TRANSITIONS
-------------------------------------------------- */
button, .cta-button {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s;
}
li, .card, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.12s, background 0.13s;
}
li:hover, .feature-item:hover {
  background: var(--pastel-peach);
  box-shadow: 0 4px 20px rgba(32,58,67,0.09);
  transform: scale(1.008);
}

/* --------------------------------------------------
RESPONSIVE DESIGN
-------------------------------------------------- */
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .footer .content-wrapper, footer .content-wrapper { gap: 10px; }
}
@media (max-width: 768px){
  .hero { padding: 23px 0 8px 0; min-height: 120px; margin-bottom: 32px; }
  .features, .services, .about, .about-mission, .team, .about-clarity, .process-features, .about-offer, .about-district, .districts-features, .district-support, .guide-features, .about-info, .contact-guide, .contact-details, .contact-form-section, .thank-you-section {
    padding: 22px 8px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 14px 11px;
    border-radius: 12px;
    gap: 9px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 19px;
  }
  .main-nav {
    padding: 0 4px;
  }
  footer { padding: 20px 0 10px 0; margin-top: 34px; }
  .cookie-modal { padding: 25px 7px 20px 7px; border-radius: 12px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.12rem; }
  body { font-size: 0.98rem; }
  .section, .features, .services, .about, .about-mission, .team, .about-clarity, .process-features, .about-offer, .about-district, .districts-features, .district-support, .guide-features, .about-info, .contact-guide, .contact-details, .contact-form-section, .thank-you-section {
    padding: 13px 3px;
  }
  .footer .container { padding-left: 2px; padding-right: 2px; }
  .footer .content-wrapper, footer .content-wrapper { gap: 7px; }
}

/* --------------------------------------------------
FOCUS & ACCESSIBILITY
-------------------------------------------------- */
:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* --------------------------------------------------
SCROLLBAR (for pastel accent)
-------------------------------------------------- */
body::-webkit-scrollbar { width: 8px; background: var(--pastel-peach); }
body::-webkit-scrollbar-thumb { background: var(--pastel-blue); border-radius: 8px; }

/* --------------------------------------------------
PRINT & MISC
-------------------------------------------------- */
@media print {
  *, *:before, *:after { color: #000 !important; background: #fff !important; box-shadow: none !important; }
  header, nav, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
}
