@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #3F51B5;
  --color-accent-lavender: #CE93D8;
  --color-accent-gold: #FFCA28;
  --color-light-gray: #ECEFF1;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-text: #2C2C2C;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 56px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.4s ease, opacity 0.4s ease;
}

a:hover {
  color: var(--color-accent-lavender);
  opacity: 0.8;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 110px 0;
  width: 100%;
}

.section-full-bleed {
  padding: 110px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.gradient-bg-light {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(207, 185, 215, 0.2) 100%);
}

.gradient-bg-warm {
  background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 202, 40, 0.1) 100%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.95);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.4s ease;
}

.nav-links a:hover {
  color: var(--color-primary);
}

body {
  padding-top: 60px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-lavender) 100%);
  color: var(--color-white);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 64px;
  margin-bottom: 16px;
}

.hero h1::after {
  background-color: var(--color-accent-gold);
  left: 50%;
  transform: translateX(-50%);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.content-section.reverse {
  direction: rtl;
}

.content-section.reverse > * {
  direction: ltr;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  text-align: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.card {
  padding: 32px;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  background-color: rgba(63, 81, 181, 0.02);
  border-color: var(--color-accent-gold);
  opacity: 0.95;
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  background-color: var(--color-light-gray);
  color: var(--color-primary);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
}

table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-light-gray);
}

table tbody tr:hover {
  background-color: rgba(63, 81, 181, 0.02);
}

.quote-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-lavender) 100%);
  color: var(--color-white);
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 400;
}

.quote-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-lavender));
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(63, 81, 181, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(63, 81, 181, 0.3);
  color: var(--color-white);
}

.cta-button-secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.cta-button-secondary:hover {
  background-color: rgba(63, 81, 181, 0.05);
  color: var(--color-primary);
}

.footer {
  background-color: var(--color-dark);
  color: var(--color-light-gray);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section a {
  color: var(--color-light-gray);
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--color-accent-gold);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-divider {
  border-top: 1px solid rgba(236, 239, 241, 0.2);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
}

.disclaimer {
  background-color: var(--color-light-gray);
  border-left: 4px solid var(--color-accent-gold);
  padding: 24px;
  margin: 32px 0;
  border-radius: 4px;
}

.disclaimer h4 {
  color: var(--color-primary);
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: border-color 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(63, 81, 181, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

.cookie-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s ease;
}

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-accent-lavender);
}

.cookie-btn-decline {
  background-color: var(--color-light-gray);
  color: var(--color-text);
}

.cookie-btn-decline:hover {
  background-color: rgba(63, 81, 181, 0.1);
}

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

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 20px;
}

.faq-answer {
  margin-top: 16px;
  display: none;
  line-height: 1.8;
}

.faq-answer.show {
  display: block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .header {
    padding: 12px 0;
  }

  .nav-links {
    gap: 16px;
  }

  body {
    padding-top: 50px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image {
    width: 60%;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-section.reverse {
    direction: ltr;
  }

  .section {
    padding: 60px 0;
  }

  .section-full-bleed {
    padding: 60px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .quote-section {
    padding: 40px 20px;
  }

  .quote-section blockquote {
    font-size: 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
