/* ========== CSS RESET & BASE ========== */
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,
b, 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, 
menu, 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 {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background-color: #181C2B;
  color: #D0D7E8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(135deg, #181C2B 65%, #21407B 100%);
  transition: background 0.5s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
main, section, article, aside, header, footer, nav {
  display: block;
}
a {
  color: #F6A800;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-shadow: 0 0 8px #F6A800;
}
ul, ol {
  list-style: none;
}

/* ========= BRAND COLORS AND FONTS ========= */
:root {
  --primary: #21407B;
  --secondary: #D0D7E8;
  --accent: #F6A800;
  --bg-dark: #181C2B;
  --text-light: #D0D7E8;
  --text-dark: #181C2B;
  --card-bg: #232A45;
  --card-shadow: rgba(33, 64, 123, 0.12);
  --shadow-strong: rgba(246, 168, 0, 0.20);
  --border-radius: 18px;
  --gap-section: 40px;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm45_QpRyS7j.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxZ3gTD_vx3rCs.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.375rem; margin-bottom: 32px; }
h2 { font-size: 1.75rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 12px; }
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: #D0D7E8;
  font-size: 1rem;
  font-weight: 400;
}
strong { color: #F6A800; font-weight: 700; }
blockquote {
  border-left: 4px solid #F6A800;
  padding-left: 16px;
  font-size: 1.1rem;
  color: #181C2B;
  background: #F8F9FC;
  margin-bottom: 16px;
  font-style: italic;
}

/* ========== LAYOUT CONTAINERS & SPACING ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== FLEXBOX COMPONENT LAYOUTS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px 0 var(--card-shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px 2px var(--shadow-strong);
  transform: translateY(-6px) scale(1.012);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 24px 0 var(--card-shadow);
  color: #181C2B;
  margin-bottom: 20px;
  flex: 1 1 340px;
  min-width: 280px;
}
.testimonial-card p,
.testimonial-card strong {
  color: #181C2B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= CUSTOM FLEX COMPONENTS FOR LISTS AND CAROUSELS ======= */
.feature-grid, .team-members-grid, .startup-cards, .program-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.feature-grid > div,
.team-members-grid > div,
.startup-cards > div,
.program-grid > div {
  flex: 1 1 260px;
  background: var(--card-bg);
  color: #D0D7E8;
  border-radius: var(--border-radius);
  padding: 24px 18px;
  box-shadow: 0 2px 16px 0 var(--card-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover,
.team-members-grid > div:hover,
.startup-cards > div:hover,
.program-grid > div:hover {
  box-shadow: 0 8px 32px 1px var(--accent);
  transform: translateY(-4px) scale(1.01);
}
.startup-list-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.startup-list-carousel > div {
  background: var(--card-bg);
  color: #F6A800;
  border-radius: var(--border-radius);
  padding: 16px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex: 1 1 240px;
  box-shadow: 0 2px 10px 0 var(--card-shadow);
  margin-bottom: 0;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 18px;
}
.events-calendar > ul,
.past-events-list > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.event-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ========== BUTTONS & CTAs ========== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #181C2B;
  background: linear-gradient(90deg, #F6A800 75%, #FFD066 100%);
  padding: 13px 38px;
  border: none;
  border-radius: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(246,168,0,0.19);
  transition: background 0.25s, box-shadow 0.18s, color 0.18s, transform 0.12s;
  text-shadow: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #FFD066 85%, #F6A800 100%);
  color: #21407B;
  box-shadow: 0 4px 28px 2px var(--accent);
  outline: none;
  transform: translateY(-2px) scale(1.03);
}
button, .btn {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: rgba(33, 64, 123, 0.90);
  box-shadow: 0 2px 12px 0 rgba(24,28,43,0.1);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 18px 20px 18px 20px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  color: #D0D7E8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  position: relative;
  padding: 2px 0;
  transition: color 0.20s, text-shadow 0.16s;
}
header nav a:not(.cta-primary):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.17s;
  border-radius: 2px;
  margin-top: 4px;
}
header nav a:not(.cta-primary):hover:after, header nav a:not(.cta-primary):focus:after {
  width: 100%;
}
header nav a:not(.cta-primary):hover, header nav a:not(.cta-primary):focus {
  color: #F6A800;
  text-shadow: 0 0 8px #F6A800;
}
header nav .cta-primary {
  margin-left: 22px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #F6A800;
  border: none;
  padding: 4px 16px;
  border-radius: 8px;
  transition: background 0.20s;
  z-index: 110;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {  background: #232A45;  }

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(24,28,43,0.97);
  z-index: 1010;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.58,-0.32,.56,1.31);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  padding: 12px 20px;
  font-size: 2.2rem;
  background: none;
  color: #F6A800;
  align-self: flex-end;
  border: none;
  border-radius: 10px;
  margin: 22px 16px 16px 0;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #21407B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #D0D7E8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-radius: 4px;
  min-width: 200px;
  transition: color 0.20s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #181C2B;
  background: #F6A800;
}

@media (max-width: 1100px) {
  .container { padding: 0 10px; }
  header .container { gap: 18px; }
  nav { gap: 12px; }
}

@media (max-width: 900px) {
  header .container { gap: 14px; }
  header nav { gap: 12px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .content-wrapper, .section {
    padding: 28px 6px;
  }
  .feature-grid, .team-members-grid, .startup-cards, .program-grid, .startup-list-carousel {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .testimonial-card, .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
  .event-testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .partner-logos {
    flex-direction: row;
    gap: 14px;
    justify-content: flex-start;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.175rem; }
  h3 { font-size: 1.03rem; }
  .cta-primary { font-size: 1rem; padding: 10px 22px; }
  header .container { padding: 14px 6px; }
}

/* ========== FOOTER ========== */
footer {
  background: #232A45;
  color: #D0D7E8;
  padding: 34px 0 12px 0;
  box-shadow: 0 -2px 12px 0 rgba(24,28,43,0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
.footer-brand {
  flex: 1 1 160px;
  min-width: 140px;
  margin-bottom: 18px;
}
.footer-nav {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: #F6A800;
  transition: color 0.16s;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.footer-contact {
  flex: 1 1 240px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-contact p, .footer-contact a {
  color: #D0D7E8;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px; height: 18px;
}
@media (max-width: 800px) {
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ========== BREADCRUMB & SECONDARY NAVS (if needed) ========== */
.breadcrumb {
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #979fc6;
}
.breadcrumb a { color: #F6A800; }
.breadcrumb a:hover { color: #fff; }

/* ========== UTILITY CLASSES ========== */
.bg-accent {
  background-color: var(--accent) !important;
  color: #181C2B !important;
}
.bg-secondary {
  background: var(--secondary);
  color: #181C2B;
}
.text-secondary { color: #D0D7E8 !important; }
.text-accent { color: #F6A800 !important; }
.text-dark { color: #181C2B !important; }
.text-center { text-align: center; }
.rounded { border-radius: 18px; }
.shadowed { box-shadow: 0 4px 22px 0 var(--card-shadow); }

/* ========== SOCIAL AND MISC ========== */
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}
.social-links a {
  display: inline-flex;
  background: #232A45;
  border-radius: 50%;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  transition: background 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 10px 0 var(--card-shadow);
}
.social-links a:hover, .social-links a:focus {
  background: #F6A800;
  box-shadow: 0 4px 22px 0 var(--accent);
}
.social-links img {
  width: 22px; height: 22px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #232A45;
  color: #fff;
  padding: 25px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  justify-content: center;
  border-top: 3px solid #F6A800;
  box-shadow: 0 -2px 18px 0 #181C2B;
  z-index: 1202;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.32s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin-bottom: 3px;
  max-width: 400px;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-accent, .cookie-btn-settings {
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  background: #181C2B;
  color: #F6A800;
  transition: background 0.2s, color 0.18s, box-shadow 0.15s;
  font-weight: 700;
}
.cookie-btn-accent {
  background: #F6A800;
  color: #181C2B;
  box-shadow: 0 2px 18px 0 var(--accent);
}
.cookie-btn-accent:hover, .cookie-btn-accent:focus {
  background: #21407B;
  color: #fff;
}
.cookie-btn-settings {
  background: transparent;
  color: #F6A800;
  border: 1.6px solid #F6A800;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #232A45;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 27px 6px 16px 6px;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-buttons { width: 100%; gap: 8px; }
}

/* ========== COOKIE MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #232A45;
  padding: 36px 32px 28px 32px;
  border-radius: 22px;
  box-shadow: 0 6px 36px 0 #181C2B, 0 0px 0px 1px #F6A800;
  min-width: 340px;
  z-index: 1220;
  opacity: 1;
  transition: opacity 0.32s, transform 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.93);
}
.cookie-modal h3 {
  color: #F6A800;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  text-align: center;
}
.cookie-modal .cookie-category-list {
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181C2B;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: #D0D7E8;
  font-size: 1rem;
}
.cookie-category label { font-weight: 700; color: #F6A800; }
.cookie-category input[type="checkbox"] {
  accent-color: #F6A800;
  width: 18px; height: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (max-width: 470px) {
  .cookie-modal { min-width: unset; padding: 19px 7px 14px 7px; }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 7px;
  }
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.card, .testimonial-card, .feature-grid > div, .team-members-grid > div, .startup-cards > div, .program-grid > div {
  transition: box-shadow 0.27s, transform 0.18s;
}
.cta-primary, .cookie-btn, .cookie-btn-accent, .cookie-btn-settings {
  transition: background 0.23s, color 0.19s, box-shadow 0.15s, transform 0.13s;
}
.mobile-menu, .cookie-modal { will-change: transform, opacity; }

/* ========== FORM ELEMENTS (if present) ========== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #232A45;
  color: #F6A800;
  border: 2px solid #D0D7E8;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  transition: border 0.18s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #F6A800;
  box-shadow: 0 2px 10px 0 var(--accent);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6A800;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
}

/* ========== SPECIAL SECTIONS ========== */
.thank-you-message, .next-steps-info {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  color: #F6A800;
  padding: 28px 16px;
  box-shadow: 0 2px 16px 0 var(--accent);
  margin-bottom: 20px;
  font-size: 1.12rem;
}
.next-steps-info ul {
  margin-left: 20px;
  list-style: disc;
  color: #D0D7E8;
}

/* ========== MISC ELEMENTS ========== */
.categories-overview, .event-highlights, .impact-stories, .faq-snippet {
  background: rgba(33, 64, 123, 0.11);
  border-radius: var(--border-radius);
  color: #F6A800;
  padding: 18px 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px 0 var(--card-shadow);
  font-size: 1.08rem;
}

.program-benefits ul, .step-list ol, .faq-snippet ul {
  list-style: disc inside;
  color: #D0D7E8;
  padding-left: 16px;
}
.program-benefits ul li,
.step-list ol li, .faq-snippet ul li {
  margin-bottom: 7px;
}
.section ul, .section ol {
  margin: 12px 0 12px 24px;
  color: #D0D7E8;
}

/* ========== MAP EMBED ========== */
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 var(--card-shadow);
  margin-top: 18px;
  margin-bottom: 12px;
  max-width: 98vw;
  width: 100%;
}

/* Ensure all cards, lists, and sections have adequate spacing */
.card, .testimonial-card, .feature-grid > div, .team-members-grid > div, .startup-cards > div, .program-grid > div, .startup-list-carousel > div {
  margin-bottom: 20px;
}
.section > .container, .section > .container > .content-wrapper {
  margin-bottom: 0;
}

/* END OF STYLES */
