:root {
  --color-primary: #C3E9ED;
  --color-accent-1: #5D8AA8;
  --color-accent-2: #7DB9B6;
  --color-accent-3: #B4D9D4;
  --color-text: #2C3E50;
  --color-light-bg: #F8FBFC;
  --color-white: #FFFFFF;
  --color-border: #E0E8EB;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

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

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

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

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent-1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

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

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

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

main {
  margin-top: 80px;
  padding-bottom: 2rem;
}

.hero-section {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 4rem;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 600px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.section {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

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

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

.section-layout-2 > :first-child {
  order: 2;
}

.section-layout-2 > :last-child {
  order: 1;
}

.section-layout-3 {
  display: block;
}

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

.card {
  background-color: var(--color-light-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.section-image-small {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.content-with-bg {
  background-color: var(--color-primary);
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.content-with-bg h2 {
  color: var(--color-accent-1);
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.bullet-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-accent-1);
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-accent-1);
  color: var(--color-white);
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--color-accent-2);
  transform: scale(1.02);
}

.cta-button a {
  color: var(--color-white);
}

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

footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

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

.footer-section p, .footer-section a {
  color: #BCC3CA;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
  max-width: 100%;
  display: none;
}

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

.cookie-content {
  flex: 1;
  min-width: 250px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-button {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-accent-1);
  background-color: var(--color-white);
  color: var(--color-accent-1);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

.cookie-button.accept {
  background-color: var(--color-accent-1);
  color: var(--color-white);
  border-color: var(--color-accent-1);
}

.cookie-button.accept:hover {
  background-color: var(--color-accent-2);
  border-color: var(--color-accent-2);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

  .section-layout-1,
  .section-layout-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-layout-2 > :first-child {
    order: 0;
  }

  .section-layout-2 > :last-child {
    order: 0;
  }

  .hero-section {
    height: 350px;
  }

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

  nav ul {
    width: 100%;
  }

  .cookie-banner.show {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1;
    text-align: center;
  }

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

  .section-layout-cards {
    grid-template-columns: 1fr;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  .section {
    padding: 0 1rem;
  }

  .header-content {
    padding: 0 1rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }

  .cookie-button {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
