:root {
  --primary: #8AAAE5;
  --accent: #E07A5F;
  --light: #F0EDE4;
  --dark: #3C3F41;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1rem;
  display: inline-block;
}

h2 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  margin: 2rem 0 1.5rem 0;
  color: var(--dark);
  line-height: 1.3;
}

h3 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: var(--dark);
}

h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 600;
  margin: 1rem 0 0.75rem 0;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

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

nav a {
  color: var(--dark);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.hero {
  height: 85vh;
  background: linear-gradient(135deg, rgba(138,170,229,0.1) 0%, rgba(224,122,95,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 4rem;
  background-color: rgba(0,0,0,0.3);
  max-width: 600px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  font-size: 3.5rem;
}

.hero-content p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
}

section {
  padding: 4rem 0;
}

.section-full {
  background-color: var(--light);
  width: 100%;
  padding: 4rem 0;
  margin: 0 -2rem;
}

.section-full .container {
  padding: 0 2rem;
}

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

.intro-text h2 {
  color: var(--dark);
  font-size: 2.2rem;
}

.intro-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.content-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-grid.reverse > :first-child {
  order: 2;
}

.content-grid.reverse > :last-child {
  order: 1;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.button {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.accent {
  color: var(--accent);
  border-color: var(--accent);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.blog-card h3 {
  margin-top: 0;
  color: var(--dark);
}

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  margin: 1.5rem 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #666;
  line-height: 1.7;
}

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

footer a {
  color: var(--primary);
}

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

.footer-content {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

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

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  background-color: #7a99d6;
}

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

.cookie-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-learn {
  background-color: var(--accent);
  color: var(--white);
}

.cookie-learn:hover {
  background-color: #d66c4a;
}

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(--dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(138,170,229,0.1);
}

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

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

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

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

table tr:hover {
  background-color: rgba(138,170,229,0.05);
}

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

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    height: auto;
    min-height: 50vh;
    padding: 100px 2rem 4rem 2rem;
  }

  .hero-content {
    padding: 2.5rem;
    max-width: 100%;
  }

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

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .intro-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-grid.reverse {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse > :first-child {
    order: 0;
  }

  .content-grid.reverse > :last-child {
    order: 0;
  }

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

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

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

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