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

:root {
  --bg-primary: #f8fbfa;
  --accent-blue: #3a8ca8;
  --accent-dark: #1f4f5f;
  --bg-light: #fdfef9;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--bg-primary);
  color: #333;
  line-height: 1.82;
}

h1, h2, h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  letter-spacing: 0.3px;
}

h2 {
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-weight: 600;
  font-size: 1.3rem;
}

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

header {
  background-color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  opacity: 0.95;
  padding: 0.5rem 0;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
}

header nav a {
  color: var(--accent-dark);
  text-decoration: none;
  margin: 0 1.5rem;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

main {
  padding-top: 80px;
}

.section {
  padding: 4rem 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 140px;
}

.hero {
  background: var(--accent-blue);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

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

.row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.col {
  flex: 1;
}

.col-img {
  flex: 1;
}

.col-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(58, 140, 168, 0.15);
}

.row.reverse {
  flex-direction: row-reverse;
}

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

.section-bg-dark {
  background-color: var(--accent-dark);
  color: white;
}

.section-bg-dark h2,
.section-bg-dark h3 {
  color: white;
}

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

table th,
table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e0e0e0;
}

table th {
  background-color: var(--accent-blue);
  color: white;
}

table tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(58, 140, 168, 0.2);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, var(--accent-blue) 50%, var(--accent-blue) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  transition: background-position 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-position: left bottom;
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 1rem;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border-left: 4px solid var(--accent-blue);
}

.accordion-header:hover {
  background-color: #f0f4f6;
}

.accordion-content {
  padding: 1rem;
  display: none;
  background-color: white;
}

.accordion-content.active {
  display: block;
}

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

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

.footer-section h4 {
  margin-bottom: 1rem;
  font-family: 'Roboto Slab', serif;
}

.footer-section a {
  display: block;
  color: #e0e0e0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

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

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(58, 140, 168, 0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.close-btn:hover {
  color: #000;
}

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

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
}

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

.btn-reject {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-more {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

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

  .row {
    flex-direction: column;
  }

  .row.reverse {
    flex-direction: column;
  }

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

  header nav a {
    margin: 0 0.75rem;
    font-size: 0.85rem;
  }

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

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

  .cookie-text {
    margin-right: 0;
  }

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

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