@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Lora:wght@400;500;600&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #A8DADC;
  --primary-dark: #457B9D;
  --primary-darker: #1D3557;
  --light: #F1FAEE;
  --text: #1D3557;
  --text-light: #457B9D;
  --bg: #F8F9FA;
  --border: #E0E0E0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
}

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

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

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

header {
  background-color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-nav a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
}

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

footer {
  background-color: var(--primary-darker);
  color: var(--light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p {
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
  text-align: center;
  color: var(--light);
}

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

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

.hero {
  background: linear-gradient(rgba(29, 53, 87, 0.4), rgba(29, 53, 87, 0.4)), url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: white;
  font-size: 1.3rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
}

.section-full {
  background-color: var(--bg);
  padding: 3rem 2rem;
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

.image-container {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.02);
}

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

.card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

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

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

.card p {
  margin-bottom: 0;
  color: var(--text);
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-darker);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--light);
}

.list-section {
  margin: 2rem 0;
}

.list-section ul {
  list-style: none;
  padding-left: 0;
}

.list-section li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.list-section li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: bold;
}

.infographic {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.infographic .stat {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.infographic .stat-label {
  font-size: 1.1rem;
  color: var(--text);
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease;
}

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

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

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

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

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-message h1 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

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

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

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

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  position: relative;
  top: 0.5rem;
}

.timeline-content h3 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-darker);
  color: var(--light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-banner-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--primary);
  color: var(--primary-darker);
}

.btn-accept:hover {
  background-color: white;
}

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

.btn-decline:hover {
  background-color: var(--light);
  color: var(--primary-darker);
}

.btn-learn-more {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-learn-more:hover {
  background-color: var(--light);
  color: var(--primary-darker);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 400px;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

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

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

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

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-banner-buttons button {
    width: 100%;
  }

  form {
    padding: 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}
