/* --- CSS 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,
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4F6FB;
  color: #21232B;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #162035;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: .01em;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
p, .text-section {
  font-size: 1.1rem;
  color: #21232B;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 18px;
}
strong {
  color: #27446A;
  font-weight: 700;
}
em {
  color: #6A6A7C;
}

/* --- BRAND COLORS & PREMIUM STYLE VARS --- */
:root {
  --brand-primary: #27446A;
  --brand-secondary: #7DBF4F;
  --brand-accent: #F4F6FB;
  --brand-dark: #162035;
  --brand-body: #21232B;
  --luxury-gold: #BFA04B;
  --luxury-light-gold: #F0E6D2;
  --luxury-shadow: rgba(39,68,106,0.08);
  --luxury-border: #E3DAC9;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-center {
  align-items: center;
  text-align: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 28px var(--luxury-shadow);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* --- FLEXBOX SPACING REQS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--luxury-shadow);
  padding: 32px 28px;
  min-width: 265px;
  flex:1;
  transition: box-shadow .18s,transform .18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(191,160,75,0.12);
  transform: translateY(-6px) scale(1.01);
}

.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--luxury-gold);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(39,68,106,.04);
  margin-bottom: 24px;
  color: #21232B;
}
.testimonial-card .text-section {
  font-style: italic;
  font-size: 1.08rem;
  color: #162035;
}
.testimonial-card strong {
  color: var(--brand-secondary);
}
.testimonial-card em {
  font-size: 0.95rem;
  color: #666;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 16px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(191,160,75,.06);
}

/* --- TYPOGRAPHY & LUXURY EFFECTS --- */
h1, h2, h3 {
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 {
  color: var(--brand-primary);
  position: relative;
}
h1:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--luxury-gold);
  margin: 18px 0 0 0;
  border-radius: 2px;
}
.section h2 {
  color: var(--luxury-gold);
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  color: var(--brand-primary);
}

.text-section {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

ul, ol {
  margin: 0 0 18px 0;
  padding: 0;
  color: #21232B;
}
ul.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
ul.features-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px 16px 16px;
  min-width: 220px;
  flex:1;
  box-shadow: 0 2px 8px var(--luxury-shadow);
  border: 1px solid var(--luxury-border);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
ul.features-list li img {
  height: 32px;
  width: 32px;
  margin-bottom: 7px;
}
ul.features-list li strong {
  color: var(--luxury-gold);
  margin-bottom: 7px;
}
ul.features-list li:hover {
  box-shadow: 0 6px 26px rgba(191,160,75,0.10);
  border-color: var(--luxury-gold);
  transform: translateY(-4px) scale(1.008);
}
@media (max-width: 1000px) {
  ul.features-list {
    flex-direction: column;
    gap: 14px;
  }
  ul.features-list li {
    min-width: unset;
  }
}

.course-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--luxury-shadow);
  border-left: 5px solid var(--luxury-gold);
  padding: 24px 20px 16px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .19s;
  margin-right: 20px;
}
.course-block:last-child {
  margin-right: 0;
}
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .courses-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .course-block {
    margin-right: 0;
  }
}

/* --- SPEAKER PROFILES --- */
.speakers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}
.speaker-profile {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--luxury-shadow);
  padding: 18px 24px 12px 24px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  min-width: 240px;
  margin-bottom: 10px;
  border-left: 4px solid var(--brand-primary);
  transition: box-shadow .16s, border-color .16s;
}
.speaker-profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--luxury-gold);
  background: var(--luxury-light-gold);
}
.speaker-profile strong {
  color: var(--brand-primary);
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.speaker-profile:hover {
  border-color: var(--luxury-gold);
  box-shadow: 0 9px 24px rgba(39,68,106,0.14);
}
@media (max-width: 900px) {
  .speakers-list {
    flex-direction: column;
    gap: 16px;
  }
  .speaker-profile {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .footer-nav {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    align-items: flex-start;
  }
}
.footer-legal {
  color: #555;
  font-size: .98rem;
  margin-bottom: 9px;
}
.footer-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.footer-cta span {
  color: var(--luxury-gold);
  font-weight: 700;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .footer-cta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  border-radius: 28px;
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--luxury-gold);
  box-shadow: 0 2px 8px var(--luxury-shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 11px 34px;
  margin-top: 18px;
  transition: background .23s, color .2s, box-shadow .2s, border .18s, transform .22s;
  cursor: pointer;
  outline: none;
}
.btn:hover, .btn:focus {
  background: var(--luxury-gold);
  color: #fff;
  border-color: var(--luxury-gold);
  box-shadow: 0 5px 18px var(--luxury-shadow);
  transform: translateY(-2px) scale(1.01);
}
.btn.btn-primary, .btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--luxury-gold);
  font-weight: bold;
  letter-spacing: 0.02em;
  box-shadow: 0 5px 15px rgba(39,68,106,0.13);
}
.btn.btn-primary:hover, .btn-primary:hover {
  background: var(--luxury-gold);
  color: var(--brand-primary);
  border-color: var(--luxury-gold);
  box-shadow: 0 8px 28px rgba(191,160,75,0.11);
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    min-width: unset;
    padding: 11px 0;
    margin-top: 14px;
  }
}

/* --- HEADER & NAV --- */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(39,68,106,.045);
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: var(--brand-primary);
  font-size: 1.04rem;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--luxury-gold);
  border-bottom: 2px solid var(--luxury-gold);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  color: var(--luxury-gold);
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  transition: background .17s, color .17s;
  z-index: 201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--luxury-light-gold);
  color: var(--brand-primary);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 1rem;
  }
  header .btn.btn-primary {
    font-size: 1rem;
    padding: 8px 20px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 9px;
    min-height: 60px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,28,41,0.84);
  z-index: 990;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(0.62, 0, 0.32, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.25rem;
  background: transparent;
  color: #fff;
  border: none;
  margin: 22px 30px 16px 0;
  cursor: pointer;
  z-index: 1001;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--luxury-gold);
  background: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 10px;
  transition: background .18s, color .17s;
  min-width: 200px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--luxury-gold);
  color: var(--brand-primary);
}
@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

/* --- RESOURCE & FAQ SECTIONS --- */
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.resource-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px var(--luxury-shadow);
  padding: 14px 20px;
  min-width: 180px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 14px;
  transition: box-shadow .16s, transform .16s;
}
.resource-list li img {
  width: 27px;
  height: 26px;
  margin-right: 10px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-left: 4px solid var(--luxury-gold);
  border-radius: 9px;
  padding: 14px 18px;
  font-size: 1.05rem;
  color: var(--brand-primary);
  box-shadow: 0 2px 8px var(--luxury-shadow);
}
.faq-item strong {
  display: block;
  color: var(--luxury-gold);
  margin-bottom: 7px;
}

/* --- CONTACT & INFO LISTS --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #21232B;
}
.contact-info-list img {
  margin-right: 9px;
  width: 22px;
  height: 22px;
}

/* --- GENERIC LINKS --- */
a {
  transition: color .13s;
}
a:hover, a:focus {
  color: var(--luxury-gold);
  outline: none;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--brand-body);
  box-shadow: 0 -4px 28px rgba(39,68,106,.11);
  z-index: 1102;
  padding: 18px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 2px solid var(--luxury-gold);
  animation: slideUpIn .42s cubic-bezier(.67,.17,.54,1.04);
}
@keyframes slideUpIn { from { transform: translateY(80%); opacity: 0;} to { transform:translateY(0); opacity: 1;} }
.cookie-banner p {
  font-size: 1.04rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner .btn, .cookie-banner .btn-primary {
  margin-top: 0;
  min-width: 120px;
  font-size: 1.02rem;
  padding: 8px 18px;
}
.cookie-banner .btn-cookie-settings {
  background: #fff;
  border: 1.5px solid var(--luxury-gold);
  color: var(--brand-primary);
  border-radius: 22px;
  padding: 8px 18px;
  font-weight: 500;
  transition: background .16s, color .16s, box-shadow .16s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: var(--luxury-light-gold);
  color: var(--luxury-gold);
  box-shadow: 0 2px 14px var(--luxury-shadow);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 6px 18px 6px;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 420px;
  width: 92vw;
  background: #fff;
  color: var(--brand-body);
  border-radius: 20px;
  box-shadow: 0 8px 44px rgba(39,68,106,0.27);
  z-index: 2002;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 28px 28px 28px;
  opacity: 1;
  animation: modalIn .28s cubic-bezier(.72,.08,.33,1.07);
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%,-44%) scale(.89);}
  to { opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h3 {
  color: var(--luxury-gold);
  margin-bottom: 7px;
  font-size: 1.26rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .btn {
  font-size: 1.01rem;
  padding: 7px 20px;
  border-radius: 24px;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 20px;
  background: #e5e5e5;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background .18s;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--luxury-gold);
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 2px;
  transition: left .21s, background .14s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 16px;
  background: var(--brand-secondary);
}
.cookie-modal .cookie-category-desc {
  font-size: 0.98rem;
  color: #575762;
  margin-bottom: 6px;
  margin-left: 28px;
}
@media (max-width: 440px) {
  .cookie-modal {
    padding: 16px 4px 18px 7px;
    gap: 16px;
    max-width: 95vw;
  }
}

.cookie-modal .btn-close-modal {
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background .1s, color .18s;
}
.cookie-modal .btn-close-modal:hover{
  color: var(--luxury-gold);
  background: #F4F6FB;
}

/* --- HTML ELEMENTS --- */
main {
  margin-bottom: 35px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  main {
    margin-bottom: 16px;
  }
  section {
    margin-bottom: 36px;
    padding: 24px 4px;
  }
}

footer {
  background: #fff;
  padding: 32px 0 24px 0;
  box-shadow: 0 -3px 12px rgba(191,160,75,.04);
}

::-webkit-input-placeholder { color: #888; }
:-moz-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }

/* --- PAGE SPECIFIC ELEMENTS --- */
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

ul.contact-info-list a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color .13s;
}
ul.contact-info-list a:hover, ul.contact-info-list a:focus {
  color: var(--luxury-gold);
}

/* --- GOLDEN & SHADOW MICRO-DETAILS --- */
hr {
  border: none;
  border-top: 1.5px solid var(--luxury-gold);
  margin: 31px 0;
}

/* --- CARD GRID GAPS ENFORCED --- */
.card-container>.card,
.courses-grid>.course-block,
ul.features-list>li,
.speakers-list>.speaker-profile {
  margin-bottom: 20px;
}

/* --- FOCUS STATE & ACCESSIBILITY --- */
:focus {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 2px;
}

/* --- SCROSSBAR BEAUTY --- */
body::-webkit-scrollbar {
  width: 11px;
  background: #F4F6FB;
}
body::-webkit-scrollbar-thumb {
  background: var(--luxury-light-gold);
  border-radius: 8px;
}

/* --- HIDE FORM PLACEHOLDERS (no forms on current site, just for future-proof) --- */
input, textarea {
  background: #fff;
  border-radius: 7px;
  border: 1px solid #e9e4d1;
  color: #21232B;
  padding: 10px 16px;
  box-shadow: 0 1px 2px rgba(191,160,75,.035);
  margin-bottom: 15px;
  font-size: 1.08rem;
}
input:focus, textarea:focus {
  border: 1.2px solid var(--luxury-gold);
  background: #fffbe6;
}

/* --- UTILITIES --- */
.d-none {
  display: none !important;
}

/* --- PRINT --- */
@media print {
  header, .main-nav, .btn.btn-primary, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  section, .container {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}
