:root {
  --primary-color: #1E2B3A;
  --accent-gold: #FFD700;
  --accent-green: #4CAF50;
  --accent-red: #DC3545;
  --neutral-light: #F5F5F5;
  --neutral-gray: #999999;
  --text-dark: #1E2B3A;
  --text-light: #666666;
}

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

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.65;
}

ul, ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

header nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 60px;
  padding: 0;
}

.hero-section {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.section {
  padding: 4rem 2rem;
}

.section-full-width {
  width: 100%;
  padding: 4rem 0;
}

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

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.card ul {
  list-style: none;
  margin-left: 0;
}

.card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #FFE033;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background-color: var(--accent-green);
  color: white;
}

.btn-secondary:hover {
  background-color: #45a049;
}

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

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

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

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

.dark-bg h2 {
  color: var(--accent-gold);
}

.dark-bg p {
  color: #D5D5D5;
}

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

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

footer p, footer a {
  margin-bottom: 0.5rem;
  color: #D5D5D5;
  text-decoration: none;
  line-height: 1.8;
}

footer a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

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

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

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  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.6;
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

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

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

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

.cookie-learn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
}

.cookie-learn:hover {
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

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

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

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

.text-center {
  text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-4 { margin-bottom: 4rem; }

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }

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

  header nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

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

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

  .hero-section img {
    height: 250px;
  }

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

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

  .section {
    padding: 2.5rem 1rem;
  }

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

@media (max-width: 480px) {
  header nav {
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  h1 { font-size: 1.5rem; }

  .btn {
    width: 100%;
  }

  .cookie-text {
    font-size: 0.9rem;
  }
}
