:root {
  --primary: #a8d5e2;
  --dark: #1e3a52;
  --accent: #ff8fa3;
  --gold: #d4a574;
  --light: #f8fafb;
  --text: #2c3e50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Playfair Display', serif;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

h4 {
  font-size: 1.2rem;
}

h5, h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text);
}

a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 213, 226, 0.3);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 2px;
}

.logo a {
  color: var(--dark);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover:after {
  width: 100%;
}

body {
  margin-top: 70px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(168, 213, 226, 0.5) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -70px;
  padding-top: 10rem;
}

.hero img {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}

.hero h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.disclaimer {
  background-color: var(--primary);
  color: var(--dark);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin: 2rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(168, 213, 226, 0.3);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(30, 58, 82, 0.12);
  border-color: var(--gold);
}

.card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--dark);
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--dark);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background-color: var(--dark);
  color: white;
}

.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--gold);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(168, 213, 226, 0.2);
}

section:last-child {
  border-bottom: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.two-column img {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  object-fit: cover;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

th {
  background-color: var(--primary);
  color: var(--dark);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(168, 213, 226, 0.3);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: rgba(168, 213, 226, 0.1);
}

.list {
  list-style: none;
  margin: 2rem 0;
}

.list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text);
  line-height: 1.8;
}

.list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.faq-item {
  background-color: white;
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text);
}

.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(212, 165, 116, 0.2) 100%);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-block h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.cta-block p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(168, 213, 226, 0.5);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-disclaimer {
  background-color: rgba(168, 213, 226, 0.15);
  padding: 1rem;
  border-radius: 5px;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-left: 4px solid var(--gold);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--gold);
}

.cookie-decline {
  background-color: transparent;
  color: var(--dark);
  border: 1px solid var(--text);
}

.cookie-decline:hover {
  border-color: var(--dark);
  background-color: rgba(30, 58, 82, 0.05);
}

.cookie-more {
  background-color: transparent;
  color: var(--dark);
  border: 1px solid var(--text);
  text-decoration: underline;
}

.cookie-more:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.disclaimer-box {
  background-color: rgba(168, 213, 226, 0.15);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 5px;
  margin: 2rem 0;
  color: var(--text);
  line-height: 1.7;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .hero {
    padding: 3rem 1rem 3rem 1rem;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-block {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    margin-top: 60px;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  nav {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

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

  .two-column {
    gap: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .cta-block {
    padding: 1.5rem 1rem;
  }
}
