/* ========================
   Reset & Normalize
======================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
}
body {
  min-height: 100vh;
  color: #222D38;
  background: #F5F7FA;
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #16316A;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #47A565;
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 15px;
}

/* ================
   Font families
================ */
h1, h2, h3, h4, h5, h6, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #16316A;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #16316A;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #253354;
}
h4, h5, h6 {
  margin-bottom: 10px;
  color: #253354;
}
p, li, ul, a, span, label, input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222D38;
}
strong {
  color: #16316A;
}

/* =================
   Container/Layout
================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =====================
   Spacing & Alignment
===================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(22,49,106,0.09);
  padding: 24px 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(22,49,106,0.08);
  border: 1px solid #e0e6ef;
  min-width: 260px;
  max-width: 360px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================
   HERO & MAIN PROMO SECTION
============================ */
.hero-section {
  background: #16316A;
  color: #fff;
  padding: 64px 0 48px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  color: #fff;
}
.hero-section p {
  color: #f5f7fa;
  font-size: 1.25rem;
}

/* ============
   Features
============ */
.features-section {
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 260px;
  background: #F5F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(22,49,106,0.06);
  padding: 32px 20px 26px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 270px;
  max-width: 360px;
  border: 1px solid #e8eef5;
  transition: box-shadow 0.22s, border 0.22s;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature h2 {
  margin: 10px 0 8px 0;
  font-size: 1.2rem;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 4px 28px 0 rgba(22,49,106,0.13);
  border: 1.5px solid #47A565;
}

/* ============
   Callouts
============ */
.callout-section, .cta-section, .trial-cta-section, .thank-you-section {
  background: #e0e6ef;
}
.callout-section h2, .cta-section .cta-btn, .trial-cta-section p,.thank-you-section h1  {
  color: #16316A;
}

/* ============
   Testimonials
============ */
.testimonials-section {
  background: #F5F7FA;
}
.testimonials-section h2 {
  color: #16316A;
  margin-bottom: 12px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card p {
  color: #222D38;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: #16316A;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============
   Cards & Info-Boxes
============ */
.info-box {
  background: #E6EFF7;
  border-radius: 9px;
  box-shadow: 0 2px 6px 0 rgba(22,49,106,0.07);
  padding: 24px 16px 20px 22px;
  margin: 16px 0 24px 0;
  border-left: 5px solid #47A565;
}

/* ============
   Alert & Announcements
============ */
.alert-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff7e0;
  border-left: 5px solid #FFAD1D;
  padding: 13px 16px;
  margin-bottom: 16px;
  color: #653F00;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(255,173,29,0.09);
}
.alert-banner img {
  width: 26px;
  height: 26px;
}

/* ============
   Tables: Timetable
============ */
.schedule-table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid #e0e6ef;
  box-shadow: 0 1px 8px 0 rgba(22,49,106,0.06);
}
.schedule-table th {
  background: #16316A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.schedule-table td {
  color: #2e3543;
  font-size: 1rem;
  background: #F5F7FA;
}
.schedule-table tr:nth-child(even) td {
  background: #e8eef5;
}

/* ============
   Forms (for trial/other future use)
============ */
input, textarea, select {
  border: 1px solid #e0e6ef;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  color: #222D38;
  background: #fff;
  width: 100%;
  margin-bottom: 16px;
  transition: border 0.18s;
}
input:focus,
textarea:focus,
select:focus {
  border: 1.5px solid #47A565;
  outline: none;
}
label {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #16316A;
}

/* ============
   Navigation & Header
============ */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(22,49,106,0.07);
  position: sticky;
  top: 0;
  z-index: 98;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  color: #253354;
  font-weight: 500;
  padding: 6px 0px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  transition: color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #47A565;
}
.cta-btn {
  display: inline-block;
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 28px;
  background: #fff;
  border: 2px solid #47A565;
  color: #47A565;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  transition: all 0.22s cubic-bezier(.38,.79,.33,1);
  box-shadow: 0 2px 8px 0 rgba(71,165,101,0.03);
  margin-left: 8px;
}
.cta-btn.primary {
  background: #47A565;
  color: #fff;
  border: 2px solid #47A565;
  box-shadow: 0 2px 12px 0 rgba(71,165,101,0.09);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #16316A;
  color: #fff;
  border-color: #16316A;
}
.cta-btn.secondary {
  background: #fff;
  color: #16316A;
  border: 2px solid #16316A;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #253354;
  color: #fff;
  border-color: #253354;
}

/* ============
   Footer
============ */
footer {
  background: #16316A;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.footer-brand img {
  height: 42px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: #e8eef5;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #47A565;
  text-decoration: underline;
}

/* ============
   Contact Info List
============ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
  padding-left: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #253354;
  background: #f8fafc;
  padding: 10px 20px 10px 10px;
  border-radius: 7px;
  border-left: 3px solid #47A565;
}
.contact-list img {
  width: 26px;
  height: 26px;
}

/* ============
   Team Grid, Profiles
============ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.team-profile {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 290px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(22,49,106,0.07);
  padding: 18px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid #e8eef5;
  transition: box-shadow 0.16s, border 0.16s;
}
.team-profile img {
  width: 44px;
  height: 44px;
}
.team-profile h3 {
  margin-top: 10px;
}
.team-profile:hover, .team-profile:focus-within {
  box-shadow: 0 6px 24px 0 rgba(22,49,106,0.17);
  border: 1.5px solid #47A565;
}

/* ============
   News Feed
============ */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.update-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

/* ============
   FAQ Accordion
============ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #F5F7FA;
  border-radius: 7px;
  border: 1px solid #e8eef5;
  padding: 18px 14px 13px 14px;
  margin-bottom: 7px;
  transition: border 0.15s, box-shadow 0.18s;
  box-shadow: 0 1px 4px 0 rgba(22,49,106,0.04);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-item div {
  font-size: 1rem;
  color: #2e3543;
}
.faq-item:focus-within, .faq-item:hover {
  border: 1.5px solid #47A565;
  box-shadow: 0 2px 12px 0 rgba(71,165,101,0.07);
}

/* =======================
   Mobile Burger Menu
======================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #16316A;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  position: absolute;
  right: 18px;
  top: 20px;
  z-index: 102;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e0e6ef;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(22,49,106,0.97);
  color: #fff;
  z-index: 110;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.78,.37,.26,0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  margin: 26px 26px 12px 0;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #47A565;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 20px 28px;
  width: 90vw;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  transition: color 0.19s, background 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #47A565;
  background: #192d53;
}

/* ================== 
   Cookie Consent Banner
================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 0 -2px 20px 0 rgba(22,49,106,0.14);
  border-top: 4px solid #47A565;
  padding: 26px 16px 16px 16px;
  z-index: 200;
  animation: fadeInUp 0.4s;
}
@keyframes fadeInUp {
  from { transform: translateY(70px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #233455;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.6;
  max-width: 480px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 11px 22px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.16s;
  margin-bottom: 8px;
}
.cookie-btn.primary {
  background: #47A565;
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #16316A;
}
.cookie-btn.secondary {
  background: #fff;
  color: #16316A;
  border: 2px solid #16316A;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e0e6ef;
}
.cookie-btn.settings {
  background: #fff;
  color: #47A565;
  border: 2px solid #47A565;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E6EFF7;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(22,49,106,0.60);
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookieModalIn .21s cubic-bezier(.56,-0.01,.46,1.08);
}
@keyframes cookieModalIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 370px;
  width: 94vw;
  padding: 30px 24px 20px 24px;
  box-shadow: 0 7px 28px rgba(22,49,106,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #16316A;
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5F7FA;
  border-radius: 7px;
  padding: 12px 8px 12px 14px;
  border: 1px solid #e0e6ef;
}
.cookie-category label {
  font-size: 1rem;
  margin: 0;
  color: #253354;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #47A565;
}
.modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 11px;
  justify-content: flex-end;
}

/* =========================
   Responsive Breakpoints
========================= */
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .main-nav {
    gap: 16px;
  }
  .feature {
    max-width: 100%;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .team-grid, .testimonial-slider {
    gap: 20px;
  }
  .feature, .team-profile, .testimonial-card {
    min-width: 220px;
  }
  .main-nav {
    gap: 13px;
  }
  .flex-between-center {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .footer-nav, .footer-brand {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .flex-between-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-section .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .text-image-section,
  .content-grid,
  .feature-grid,
  .team-grid,
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
@media (max-width: 570px) {
  .container {
    padding: 0 5px;
  }
  html {
    font-size: 14px;
  }
  .hero-section {
    padding: 36px 0 26px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 7px;
  }
  .feature {
    padding: 16px 7px 18px 7px;
  }
  .alert-banner {
    padding: 8px 6px 8px 10px;
    gap: 7px;
    font-size: 0.97rem;
  }
}

/* ===============
   Utility Classes
================ */
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.nowrap {
  white-space: nowrap;
}
.bold {
  font-weight: 700 !important;
}

/* ========== END ========= */
