:root {
  --color-mint: #7AC7A3;
  --color-yellow: #F9D923;
  --color-beige: #F8F1E9;
  --color-burgundy: #A63A50;
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-gray: #f5f5f5;
}

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

html, body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
}

body {
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
}

h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1.gradient-text {
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-burgundy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

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

blockquote {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 2rem;
  border-left: 3px solid var(--color-mint);
  margin: 2rem 0;
  color: var(--color-burgundy);
}

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

.section {
  padding: 90px 0;
}

.section.full-bleed {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color 0.3s ease;
}

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

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

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-mint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo:hover {
  color: var(--color-burgundy);
}

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

nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-mint);
}

.hero {
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-light) 100%);
  padding: 200px 0 100px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-burgundy) 100%);
  color: var(--color-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(122, 199, 163, 0.3);
}

.button:active {
  animation: pulse 0.6s ease-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 199, 163, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(122, 199, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 199, 163, 0);
  }
}

.card {
  background: var(--color-light);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.text-image-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.text-image-row.reverse {
  flex-direction: row-reverse;
}

.text-image-row-content {
  flex: 1;
}

.text-image-row-image {
  flex: 1;
}

.text-image-row-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-yellow);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.disclaimer {
  background-color: var(--color-beige);
  border-left: 4px solid var(--color-burgundy);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 14px;
  line-height: 1.6;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 60px 0 30px;
}

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

footer h3 {
  font-size: 18px;
  margin-bottom: 1.5rem;
  color: var(--color-mint);
}

footer p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

footer a {
  color: var(--color-mint);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: var(--color-yellow);
}

.footer-divider {
  border-top: 1px solid #333;
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #999;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-label {
  font-weight: 600;
  color: var(--color-mint);
  min-width: 80px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(122, 199, 163, 0.1);
}

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

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-mint);
}

.faq-answer {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

table thead {
  background-color: var(--color-beige);
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid #ddd;
  color: var(--color-burgundy);
}

table td {
  padding: 1rem;
  border: 1px solid #ddd;
}

table tbody tr:hover {
  background-color: #f9f9f9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  margin-right: 2rem;
}

.cookie-text a {
  color: var(--color-mint);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: var(--color-burgundy);
  color: var(--color-light);
}

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

.cookie-btn-decline:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .section {
    padding: 50px 0;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 13px;
  }

  .text-image-row {
    flex-direction: column;
    gap: 2rem;
  }

  .text-image-row.reverse {
    flex-direction: column;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cookie-text {
    margin-right: 0;
  }

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

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