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

:root {
  --primary: #345E6A;
  --accent-1: #B2C8D0;
  --accent-2: #E6EAEF;
  --accent-3: #8FA6AF;
  --highlight: #F5C710;
  --light-bg: #F9FAFB;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --border-light: #E5E7EB;
}

html, body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-3);
}

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

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

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

button, .btn {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

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

.nav-menu a {
  color: var(--text-dark);
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  border-bottom-color: var(--highlight);
}

body {
  padding-top: 70px;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-3) 100%);
  color: white;
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
}

.section {
  padding: 80px 2rem;
}

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

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

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

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

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

.content-block {
  padding: 1.5rem 0;
}

.content-block ul {
  list-style-position: inside;
  margin: 1rem 0;
  padding-left: 1rem;
}

.content-block li {
  margin: 0.8rem 0;
  line-height: 1.8;
}

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

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

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

.card-icon {
  font-size: 2.5rem;
  color: var(--highlight);
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--accent-2);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}

footer {
  background-color: var(--primary);
  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;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  display: inline-block;
  margin: 0.3rem 0;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  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(--primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: 1rem;
}

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

.thank-you-container {
  text-align: center;
  padding: 6rem 2rem;
}

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

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.cookie-accept {
  background-color: var(--highlight);
  color: var(--primary);
  font-weight: 600;
}

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

.cookie-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

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

  h2 {
    font-size: 1.5rem;
  }

  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  body {
    padding-top: 100px;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

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

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

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

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
    padding: 10px 12px;
  }

  .section {
    padding: 3rem 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
