/* RESET AND BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #FFFDF5;
  color: #17335C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17335C;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.17;
  margin-top: 0;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol, li, span {
  font-size: 1rem;
  color: #253046;
  line-height: 1.7;
}
ul, ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
a {
  color: #B99A50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6AC2A7;
}
strong {
  font-weight: 700;
}
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

/* LUXURY PREMIUM COLORS & STYLES */
:root {
  --primary: #17335C;
  --secondary: #6AC2A7;
  --accent: #FFFDF5;
  --gold: #B99A50;
  --gold-light: #e6cf96;
  --grey-bg: #F7F7F9;
  --deep-blue: #1E293B;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER: Main Nav & Burger */
header {
  background: var(--accent);
  border-bottom: 1.5px solid var(--gold-light);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.22s, color 0.22s;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
  border-bottom: 2.5px solid var(--gold);
}
.cta-btn {
  background: var(--gold);
  color: white;
  border-radius: 27px;
  padding: 12px 32px;
  font-size: 1.03rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(185, 154, 80, 0.11);
  border: 1.5px solid var(--gold);
  margin-left: 10px;
  display: inline-block;
  letter-spacing: 0.015em;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s, border-color 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  box-shadow: 0 3px 14px 0 rgba(23,51,92,0.12);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  font-size: 2rem;
  margin-left: 20px;
  border-radius: 10px;
  padding: 6px 14px;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  max-width: 340px;
  background: #FFFDF5;
  box-shadow: -3px 0 18px 3px rgba(30,41,59,0.17);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.57,.17,.35,1.09);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--primary);
  font-size: 2rem;
  margin: 24px;
  padding: 6px 14px;
  border-radius: 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
  background: #f6ede0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
  margin-top: 15px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid #f2e8d6;
  transition: color 0.2s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: #f6ede0;
}

/* Hide nav/show burger on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Section & Layout Flex Patterns */
.section, section {
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(23,51,92,0.12);
  border: 1px solid var(--grey-bg);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(185,154,80,0.13);
  border-color: var(--gold-light);
}
.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 {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 15px 0 rgba(30,41,59,0.14);
  border: 1.3px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 28px 0 rgba(185,154,80,0.15);
  border-color: var(--gold);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 9px 0 rgba(23,51,92,0.09);
  padding: 32px 24px 24px 24px;
  border-left: 5px solid var(--gold);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 5px rgba(185,154,80,0.12));
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #FFFDF5 65%, #F7F7F9 100%);
  padding: 60px 20px 58px 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 720px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.15rem;
  color: #253046;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
  }
}
@media (min-width: 901px) {
  .feature-grid {
    flex-direction: row;
  }
  .feature-item {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
  }
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
  }
}
@media (min-width: 901px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.testimonial-card p {
  color: #353535;
  font-size: 1.09rem;
  flex: 1;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  min-width: 120px;
  margin-left: 16px;
}

/* FOOTER */
footer {
  background: var(--deep-blue);
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 20px;
  margin-bottom: 16px;
}
footer a {
  color: var(--gold-light);
  font-weight: 500;
}
footer nav {
  display: flex;
  gap: 18px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  color: #EFE8D3;
}
.footer-contact span {
  color: white;
}
.footer-contact img {
  width: 20px;
  margin-right: 7px;
  opacity: 0.7;
}
footer small,
footer .container:last-child {
  width: 100%;
  text-align: center;
  color: #f0ebdf;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* POLICY/TEXT SECTIONS (Privacy/Cookies/RODO) */
.policy .content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul {
  margin-left: 18px;
  color: #253046;
}
.text-section a {
  color: var(--gold);
  text-decoration: underline dotted;
}
.text-section a:hover {
  color: var(--secondary);
}

/* SERVICES / PRICING LISTS */
.services ul,
.languages ul,
.mentoring-packages ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.services li,
.languages li,
.mentoring-packages li,
.tips-categories li,
.recommended-resources li,
.webinar-schedule li {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 13px;
  border-left: 4px solid var(--gold);
  padding: 19px 20px 17px 20px;
  box-shadow: 0 1px 7px rgba(23,51,92,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  min-height: 51px;
  transition: border-color 0.2s, box-shadow 0.17s;
}
.services li span,
.mentoring-packages li span {
  color: var(--secondary);
  margin-left: auto;
  font-weight: 600;
}
.services li a {
  margin-left: 22px;
  background: var(--primary);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 0.97rem;
  font-weight: 700;
  border: 1.2px solid var(--gold);
  transition: background 0.17s, color 0.19s;
}
.services li a:hover {
  background: var(--gold);
  color: #fff;
}

/* LINKS IN RESOURCE LISTS */
.recommended-resources li a {
  display: block;
  width: 100%;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.recommended-resources li a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* CTA SECTIONS */
.cta {
  background: var(--gold);
  border-radius: 24px;
  margin-bottom: 42px;
  box-shadow: 0 2px 24px 0 rgba(185,154,80,0.06);
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.015em;
}
.cta-btn {
  margin-top: 8px;
}

/* CONTACT PAGE STYLES */
.contact-details ul,
.contact-form-section .text-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  gap: 0;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  margin-bottom: 16px;
}
.contact-details ul img,
.contact-form-section .text-section ul li img {
  width: 25px;
  opacity: 0.8;
}
.contact-form-section .text-section ul li {
  margin-bottom: 10px;
  color: var(--primary);
}
.contact-form-section .cta-btn {
  margin-top: 14px;
}

/* THANK YOU/SUCCESS SECTION */
.thank-you-section .content-wrapper,
.about-mission .content-wrapper,
.team .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .hero {
    padding: 32px 10px 30px 10px;
  }
  .section, section {
    padding: 20px 6px;
    margin-bottom: 44px;
  }
  .content-grid, .feature-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    height: 60px;
    gap: 10px;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
  .cta h2,
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* MICRO-INTERACTIONS, TRANSITIONS, SHADOWS */
.feature-item:hover,
.card:hover,
.services li:hover,
.mentoring-packages li:hover {
  box-shadow: 0 8px 24px rgba(23,51,92,0.10);
  border-left-color: var(--gold);
  border-color: var(--gold-light);
}
li a.cta-btn,
li a.cta-btn:focus {
  outline: none;
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 10px;
  background: #FAF6EE;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 6px;
}

/* ACCESSIBLE FOCUS & SELECTION */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
::selection {
  background: var(--gold-light);
  color: var(--primary);
}

/* COOKIE BANNER STYLES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(255, 253, 245, 0.98);
  border-top: 1.5px solid var(--gold-light);
  box-shadow: 0 -2px 16px 0 rgba(30,41,59,0.07);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 8vw 17px 5vw;
  font-size: 1rem;
  color: #222;
  transition: bottom 0.36s cubic-bezier(.47,.1,.27,1.2);
}
.cookie-banner.hide {
  bottom: -100px;
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #353535;
  font-size: 1rem;
  margin-right: 26px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-consent-btn, .cookie-settings-btn {
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1.4px solid var(--gold);
  background: #fff;
  color: var(--gold);
  margin-left: 0;
  box-shadow: 0 2px 8px 0 rgba(185,154,80,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cookie-consent-btn.accept {
  background: var(--gold);
  color: #fff;
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: var(--primary);
  color: var(--gold);
}
.cookie-consent-btn.reject {
  background: #fff;
  color: var(--gold);
}
.cookie-consent-btn.reject:hover {
  background: #f3f0e4;
  color: #b98b34;
}
.cookie-settings-btn {
  background: #17335C;
  color: #FFFDF5;
  border: 1.5px solid #17335C;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #fff;
  color: #17335C;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 5vw;
    font-size: 0.97rem;
    gap: 13px;
  }
  .cookie-btns {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1400;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,51,92,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #FFFDF5;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(23,51,92,0.13);
  max-width: 420px;
  width: 92vw;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-dialog h3 {
  color: var(--primary);
  font-size: 1.25rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 11px;
  background: #fff;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-left: 4px solid var(--gold-light);
  font-size: 1rem;
  box-shadow: 0 1px 6px 0 rgba(23,51,92,0.07);
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid var(--gold-light);
  margin-right: 8px;
  background: #f6ede0;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.cookie-category input[type='checkbox']:checked {
  border-color: var(--gold);
  background: var(--gold);
}
.cookie-category .always-on {
  font-weight: 600;
  color: var(--secondary);
  margin-left: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 6px;
  justify-content: flex-end;
}

/* MISC */
::-webkit-input-placeholder { color: #8a9bb3; }
:-ms-input-placeholder { color: #8a9bb3; }
::placeholder { color: #8a9bb3; }

/* LUXURY-INSPIRED EXTRAS */
h1, h2, h3, h4 {
  text-shadow: 0 1px 0 #faf4e3, 0 0.5px 1px rgba(185,154,80,0.06);
}
.card, .feature-item, .testimonial-card {
  border-top-right-radius: 27px;
}

/* Elevation for primary sections */
.section, .hero, .about-mission, .team, .policy, .thank-you-section {
  border-radius: 22px;
  box-shadow: 0 2px 26px 0 rgba(185,154,80,0.04);
}

/* Typography Steps */
@media (max-width: 480px) {
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.17rem;}
  h3 {font-size: 1.02rem;}
  p, ul, li, .footer-contact {font-size: 0.96rem;}
}

@media (min-width: 769px) {
  h1 {font-size: 2.5rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.25rem;}
  p, ul, li, .footer-contact {font-size: 1rem;}
}

/* Utility classes */
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.center {text-align: center !important;}

/* Hide mobile menu by default */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Z-INDEXING for overlays */
header {z-index: 110;}
.mobile-menu {z-index: 999;}
.cookie-banner {z-index: 1200;}
.cookie-modal {z-index: 1400;}

/* END OF CSS */
