@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700;800&family=Lato:wght@400;500;700&display=swap');

:root {
  --color-primary: #1F3A2E;
  --color-accent-light: #F0E4D2;
  --color-accent-fern: #9BB89A;
  --color-accent-dark: #4A5F48;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F3F0;
  --color-gray-medium: #E0DCD8;
  --color-text-dark: #1F3A2E;
  --color-text-light: #555555;
  --spacing-unit: 1rem;
  --max-width: 1520px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-accent-fern);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 1rem 2rem;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(31, 58, 46, 0.1);
  border-bottom-color: var(--color-gray-medium);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

@media (max-width: 768px) {
  nav {
    gap: 1rem;
    font-size: 14px;
  }
}

main {
  margin-top: 70px;
}

.section {
  padding: 5rem 2rem;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-full-width {
  position: relative;
  overflow: hidden;
}

.section-full-width img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 58, 46, 0.4);
  z-index: 1;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-accent-light);
  font-weight: 300;
}

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

.card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-medium);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-fern);
  box-shadow: 0 8px 24px rgba(31, 58, 46, 0.1);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 1rem;
}

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

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

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

.two-column-image {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .section {
    padding: 3rem 1rem;
  }

  nav {
    gap: 0.5rem;
  }
}

.bg-light {
  background: var(--color-gray-light);
}

.bg-primary-light {
  background: rgba(31, 58, 46, 0.05);
}

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

.text-italic {
  font-style: italic;
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
}

.button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.button-light {
  background: var(--color-accent-fern);
  color: var(--color-white);
}

.button-light:hover {
  background: var(--color-accent-dark);
}

footer {
  background: var(--color-primary);
  color: var(--color-accent-light);
  padding: 3rem 2rem;
  margin-top: 5rem;
  font-size: 14px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--color-accent-light);
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-top: 1px solid rgba(240, 228, 210, 0.2);
  margin: 2rem 0;
  padding-top: 2rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(240, 228, 210, 0.7);
}

.footer-message {
  color: var(--color-accent-light);
  font-style: italic;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
}

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

td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-medium);
}

tr:hover {
  background: var(--color-gray-light);
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-medium);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--color-text-dark);
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-fern);
  box-shadow: 0 0 0 3px rgba(155, 184, 154, 0.1);
}

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

.disclaimer {
  background: var(--color-gray-light);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent-dark);
  margin: 2rem 0;
  font-size: 14px;
  color: var(--color-text-light);
}

.disclaimer strong {
  color: var(--color-text-dark);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

blockquote {
  border-left: 4px solid var(--color-accent-fern);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-light);
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-accent-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(31, 58, 46, 0.2);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

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

.cookie-btn-reject:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    justify-content: flex-start;
  }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

.grid-65-35 {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 3rem;
  align-items: center;
}

.grid-35-65 {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-65-35,
  .grid-35-65 {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-medium);
  padding-bottom: 1.5rem;
}

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

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-text-light);
  line-height: 1.75;
}
