@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --color-primary: #1a3e72;
  --color-primary-dark: #0f2b54;
  --color-accent: #d93b30;
  --color-accent-hover: #b53228;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-text: #2c3e50;
  --color-text-light: #5a6b7d;
  --color-border: #e1e8f0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-gap: 64px;
  --section-gap-mobile: 40px;
  --inner-padding: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wide-text {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 8px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1em; }
h3 { font-size: 1.4rem; margin-bottom: 0.75em; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #f0f4fa 0%, #e2ebf5 100%);
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 8px;
  text-align: center;
}

/* Author block */
.article-meta {
  padding: 32px 0 0;
  border-bottom: 1px solid var(--color-border);
}

.author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
}

.author-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

.author-avatar-fallback {
  display: flex;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0;
}

.author-role {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

.article-date {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
  font-style: italic;
}

.article-date time {
  font-weight: 600;
  color: var(--color-text);
}

/* Article body */
.article-body {
  padding: var(--section-gap) 0;
}

.article-body p {
  margin-bottom: 1.8em;
  font-size: 1.125rem;
}

.info-block {
  padding: var(--section-gap) 0;
}

.info-block.alt-bg {
  background: var(--color-bg-alt);
}

.info-media {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

.info-image-large {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.info-text p {
  font-size: 1.1rem;
  margin-bottom: 1.4em;
}

.cards-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.04);
}

.info-card i {
  font-size: 2.6rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 14px;
}

.info-card p {
  font-size: 1rem;
}

.steps-grid {
  display: grid;
  gap: 36px;
  margin-top: 40px;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid .step {
  text-align: center;
  padding: 24px;
}

.step i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.step p {
  font-size: 1rem;
}

.booking-section {
  background: linear-gradient(135deg, #f0f4fa 0%, #dce6f5 50%, #c8d8ef 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.booking-section .container {
  position: relative;
  z-index: 1;
}

.booking-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.booking-card h2 {
  text-align: center;
  margin-bottom: 0.6em;
}

.booking-path {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 42px;
}

.path-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.path-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.path-content {
  flex: 1;
}

.path-content h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.path-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.path-highlight {
  display: inline-block;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--color-primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary-dark);
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 0 14px;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.cta-section {
  background: var(--color-bg-alt);
  padding: var(--section-gap) 0;
  text-align: center;
}

.cta-subtitle {
  margin-bottom: 36px;
  color: var(--color-text-light);
  font-size: 1.15rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
section {
  word-break: break-word;
}
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox input {
  width: auto;
}

button[type="submit"] {
  width: 100%;
  margin-top: 12px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 48px 36px;
  max-width: 520px;
  width: 92%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--color-text-light);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-text);
}

.quiz-step {
  display: none;
  text-align: center;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.quiz-option {
  padding: 14px 28px;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 1.05rem;
}

.quiz-option:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.gender-options .quiz-option i {
  margin-right: 10px;
}

#quiz-email-form {
  margin-top: 28px;
}

#quiz-email-form input[type="email"] {
  width: 100%;
  margin-bottom: 24px;
}

.site-header {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.logo img {
  border-radius: 10px;
}

.mandatory-notice {
  font-size: 0.75rem;
}

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-info {
  max-width: 620px;
}

.footer-info .logo {
  margin-bottom: 20px;
}

address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.7;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 24px;
}

.copyright {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal-links {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  font-weight: 500;
}

.footer-legal-links a:hover {
  color: #fff;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1em;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 1.5em 0 0.8em;
}

.legal-content p {
  margin-bottom: 1.2em;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2em;
}

.legal-content a {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero-grid,
  .info-media,
  .form-row,
  .three-col,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .mandatory-notice {
    text-align: center;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .path-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .path-content .btn {
    width: 100%;
  }

  .author-block {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .booking-card {
    padding: 32px 20px;
  }
}
.site-header {
  margin-bottom: clamp(32px, 5vw, 64px);
}
.thanks-main {
  padding-top: clamp(32px, 5vw, 64px);
}
.thanks-card h1 {
  margin-bottom: 1.5rem;
}

