/* ============================================================
   RESET & BASE TYPOGRAPHY - Elegant Classic Mobile-First
   ============================================================ */

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;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #F7FFF7;
  color: #2E4057;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #2E4057;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E6A157;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ==============================================
   BRAND TYPOGRAPHY & CLASSIC HIERARCHY
   ============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #2E4057;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
p {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2E4057;
}
.subheadline {
  color: #6B7A8F;
  font-size: 1.13rem;
  margin-bottom: 28px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
}
strong {
  color: #2E4057;
}

ul, ol {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding-left: 22px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
}

/* ==============================================
   CONTAINER & SPACING SYSTEM
   ============================================== */
.container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 9px;
  box-shadow: 0 2px 9px rgba(46,64,87,0.07);
  padding: 26px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(46,64,87,0.17);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}
.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: 16px;
  }
}

/********************************************
 LAYOUT & FLEXBOX FOR HTML CLASS STRUCTURE
********************************************/

/* ======= HEADER / NAVIGATION ======= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #E5E5E5;
  box-shadow: 0 2px 8px rgba(46, 64, 87, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 24px;
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-size: 1.04rem;
  color: #2E4057;
  padding: 4px 14px;
  border-radius: 3px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: background 0.13s, color 0.13s;
}
nav.main-nav a:hover, nav.main-nav a[aria-current='page'] {
  background: #E6A1571C;
  color: #E6A157;
}
.btn-primary {
  background: #2E4057;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 6px;
  margin-left: 30px;
  box-shadow: 0 2px 8px rgba(46,64,87,0.08);
  transition: background 0.18s, color 0.18s, transform 0.13s;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  display: inline-block;
  vertical-align: middle;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #E6A157;
  color: #2E4057;
  box-shadow: 0 4px 14px rgba(230,161,87,0.18);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  background: #E6A157;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 22px;
  transition: background 0.18s, color 0.14s;
  z-index: 45;
  cursor: pointer;
}
.mobile-menu-toggle:hover {
  background: #2E4057;
  color: #E6A157;
}

/* Mobile Nav --- hidden on desktop */
@media (max-width: 950px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 0 12px;
    min-height: 65px;
  }
  .logo-link img {
    height: 36px;
    margin-right: 0;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F7FFF7;
  box-shadow: 0 0 0 2000px rgba(46,64,87,0.06);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.74,0.03,0.23,0.97);
  will-change: transform;
  padding: 0 0 0 0;
  min-width: 220px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #2E4057;
  background: #E6A157;
  border: none;
  align-self: flex-end;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 16px 16px 0 0;
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-close:hover {
  background: #2E4057;
  color: #E6A157;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  padding: 0 38px 24px 38px;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: #2E4057;
  padding: 12px 8px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  border-radius: 4px;
  margin-bottom: 2px;
  transition: background 0.18s, color 0.14s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6A1571C;
  color: #E6A157;
}

@media (min-width: 951px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==============================================
   HERO/BANNER
   ============================================== */
.hero {
  background: #F7FFF7;
  min-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid #E5E5E5;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 34px;
}
.content-wrapper {
  max-width: 670px;
}

@media (max-width: 600px) {
  .hero {
    min-height: 120px;
    margin-bottom: 22px;
    padding: 14px 0;
  }
  .hero .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* ==============================================
   FEATURE SECTIONS & ITEMIZED BENEFITS
   ============================================== */
.features {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(46,64,87,0.05);
  margin-bottom: 42px;
  padding: 40px 20px;
}
.feature-grid, .feature-bullets, .included-services, .bonus-features, .success-stories, .brand-values, .social-links, .next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.feature-grid li, .feature-bullets li, .included-services li, .bonus-features li, .success-stories li, .brand-values li, .social-links li, .next-steps li {
  background: #F7FFF7;
  border: 1px solid #EBE7E2;
  border-radius: 7px;
  padding: 20px 18px;
  flex: 1 1 210px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.14s, transform 0.15s;
  box-shadow: 0 1px 7px rgba(46,64,87,0.04);
}
.feature-grid li:hover, .feature-bullets li:hover, .included-services li:hover, .bonus-features li:hover {
  box-shadow: 0 4px 18px rgba(46,64,87,0.14);
  transform: translateY(-2px) scale(1.01);
}

.feature-grid img, .social-links img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .feature-grid, .feature-bullets, .included-services, .bonus-features, .success-stories, .brand-values, .social-links, .next-steps {
    flex-direction: column;
    gap: 16px;
  }  
}

/* ==============================================
   SERVICES & CARDS
   ============================================== */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(46,64,87,0.08);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 26px 16px 20px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.11s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(230,161,87,0.11);
  border-color: #E6A157;
  transform: translateY(-2px) scale(1.025);
}
.price {
  color: #E6A157;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 6px;
}

@media (max-width: 850px) {
  .services .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .service-card {
    min-width: 120px;
  }
}

/* ==============================================
   TESTIMONIALS & REVIEW CARDS
   ============================================== */
.testimonials {
  margin-bottom: 64px;
  background: #fff;
  border-radius: 7px;
  padding: 36px 18px 24px 18px;
  box-shadow: 0 2px 12px rgba(46,64,87,0.10);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.testimonial-card {
  background: #F7FFF7;
  border: 1px solid #E5E5E5;
  border-radius: 7px;
  box-shadow: 0 1px 8px rgba(46,64,87,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 240px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.13s;
}
.testimonial-card p {
  color: #2E4057;
  font-size: 1.07rem;
  font-style: italic;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.testimonial-author {
  color: #6B7A8F;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-style: normal;
  margin-left: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 16px rgba(230,161,87,0.11);
  border-color: #E6A157;
}
.rating-summary {
  background: #fff;
  border: 1px solid #E6A157;
  border-radius: 6px;
  color: #2E4057;
  padding: 18px 16px;
  margin: 6px 0 0 0;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 850px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==============================================
   PRICING TABLE
   ============================================== */
.pricing-table {
  width: 100%;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #fff;
  border-collapse: collapse;
  border-radius: 5px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 1px 9px rgba(46,64,87,0.10);
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #E5E5E5;
  padding: 16px 16px;
  text-align: left;
}
.pricing-table th {
  background: #E6A15716;
  color: #2E4057;
  font-size: 1.1rem;
}
.pricing-table td {
  color: #2E4057;
  font-size: 1rem;
}
.pricing-table tr:nth-child(even) td {
  background: #F7FFF7;
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta {
  background: #E6A15710;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.cta .btn-primary {
  margin: 18px auto 0 auto;
  display: inline-block;
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: #2E4057;
  color: #fff;
  padding: 38px 0 16px 0;
  border-top: 1.5px solid #E5E5E5;
  margin-top: 52px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  filter: grayscale(0) brightness(95%) saturate(92%);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #E6A157;
  font-size: 0.98rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: #F7FFF7;
}
.footer-contact p {
  color: #F7FFF7;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 0.99rem;
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ==============================================
   UTILITIES & HELPERS
   ============================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ==============================================
   MODALS & BANNERS
   ============================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  border-top: 2.5px solid #E6A157;
  box-shadow: 0 -3px 18px rgba(46,64,87,0.14);
  padding: 18px 14px;
  z-index: 3003;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s, transform 0.32s cubic-bezier(0.74,0.03,0.23,0.97);
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-text {
  color: #2E4057;
  font-size: 1.01rem;
  max-width: 660px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 0.98rem;
  border-radius: 6px;
  border: 1px solid #E6A157;
  padding: 8px 19px;
  background: #E6A157;
  color: #fff;
  cursor: pointer;
  margin: 0 0 0 0;
  transition: background 0.14s, color 0.13s, border 0.12s;
}
.cookie-btn:hover { background: #fff; color: #E6A157; border: 1px solid #E6A157; }
.cookie-btn.outline {
  background: #fff;
  color: #E6A157;
  border: 1px solid #E6A157;
}
.cookie-btn.outline:hover {
  background: #E6A157;
  color: #fff;
}
/* Modal Popup - Cookie Preferences */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(46, 64, 87, 0.36);
  z-index: 3100;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 10px;
  padding: 44px 30px 30px 30px;
  box-shadow: 0 8px 44px rgba(46,64,87,0.19);
  max-width: 420px;
  width: 96%;
  color: #2E4057;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalPopup 0.38s cubic-bezier(0.74,0.03,0.23,0.97);
}
@keyframes modalPopup {
  0% { transform: translateY(60px) scale(0.9); opacity: 0; }
  60% { transform: translateY(-6px) scale(1.015); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #E6A157;
  color: #fff;
  font-size: 1.45rem;
  border-radius: 50%;
  padding: 0.21em 0.37em;
  border: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover { background: #2E4057; color: #E6A157; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.cookie-toggle {
  width: 37px;
  height: 21px;
  background: #E5E5E5;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: 0.21s;
}
.cookie-toggle input:checked ~ .cookie-toggle-slider {
  background: #E6A157;
  left: 18px;
}
.cookie-toggle input:checked ~ .cookie-toggle-slider {
  box-shadow: 0 2px 4px rgba(230,161,87,0.11);
}
.cookie-toggle input:disabled ~ .cookie-toggle-slider {
  background: #F7FFF7;
}

/* ==============================================
   TABLES / CARD-GRIDS / FLEX REPEATING BLOCKS
   ============================================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(46,64,87,0.08);
  padding: 20px 18px;
  flex: 1 1 235px;
  min-width: 170px;
  margin-bottom: 20px;
}
.service-comparison,
.student-stories,
.special-moments,
.additional-info,
.highlighted-experience,
.data-rights,
.gdpr-details,
.data_protection,
.faq,
.cookie_types,
.usage_info,
.control_options,
.terms_content,
.user_responsibilities,
.liability_info,
.contact-for-privacy {
  background: #F7FFF7;
  border: 1px solid #EBE7E2;
  border-radius: 7px;
  padding: 22px 16px;
  margin: 16px 0;
  box-shadow: 0 1px 7px rgba(46,64,87,0.03);
}

/* ==============================================
   CONTACT & MAP
   ============================================== */
.contact-details {
  background: #F7FFF7;
  border: 1px solid #EBE7E2;
  border-radius: 6px;
  padding: 20px 18px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: #2E4057;
}
.google-map {
  background: #ede9e2;
  border-radius: 7px;
  padding: 13px 13px;
  text-align: center;
  color: #2E4057;
  font-size: 0.98rem;
  margin: 8px 0 0 0;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 650px) {
  .hero h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.31rem;
  }
  .section {
    padding: 20px 6px;
    margin-bottom: 34px;
  }
  .service-card, .card, .service-list li {
    padding: 13px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px;
  }
  .cookie-modal {
    padding: 32px 6vw 20px 6vw;
  }
  footer {
    padding: 20px 0 8px 0;
  }
}

/* Hide visually but accessible */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ==============================================
   SCROLLBAR / SELECTION / DETAILS
   ============================================== */
::selection {
  background: #E6A15744;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F7FFF7;
}
::-webkit-scrollbar-thumb {
  background: #E6A15777;
  border-radius: 17px;
}

/* ==============================================
   ANIMATIONS & INTERACTIONS
   ============================================== */
a, .btn-primary, .cookie-btn, .service-card, .card, .feature-grid li {
  transition: box-shadow 0.15s, background 0.14s, color 0.13s, border 0.1s, transform 0.13s;
}

/* ==============================================
   PRINT OPTIMIZATION
   ============================================== */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #2E4057 !important; }
}
