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

:root {
  --primary-blue: #0A3D62;
  --accent-gold: #CBA135;
  --accent-teal: #5AC8C8;
  --neutral-grey: #E0E0E0;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
}

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

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

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

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

body {
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 1rem 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.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: 'Lato', 'Montserrat', sans-serif;
}

header .logo:hover {
  color: var(--accent-teal);
}

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

header nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-family: 'Lato', 'Montserrat', sans-serif;
  font-weight: 500;
}

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

footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Lato', 'Montserrat', sans-serif;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

footer .disclaimer {
  background-color: rgba(202, 161, 53, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  margin-top: 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

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

section {
  padding: 4rem 0;
}

section:nth-child(odd) {
  background-color: var(--text-light);
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

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

.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(10, 61, 98, 0.9) 100%);
  color: var(--text-light);
  padding: 8rem 2rem;
  text-align: center;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

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

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.col-text {
  flex: 1;
}

.col-image {
  flex: 1;
}

.col-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.card {
  background-color: var(--text-light);
  border: 1px solid var(--neutral-grey);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.card ul {
  list-style: none;
  margin-bottom: 1rem;
}

.card li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.9rem;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Lato', 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--accent-teal);
  color: var(--text-dark);
  text-decoration: none;
}

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

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

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

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

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-family: 'Lato', 'Montserrat', sans-serif;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-grey);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(90, 200, 200, 0.1);
}

.disclaimer-box {
  background-color: rgba(10, 61, 98, 0.05);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
}

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

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

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

.cookie-consent .btn {
  margin: 0;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.cookie-consent .btn:first-child {
  background-color: var(--accent-gold);
}

.cookie-consent .btn:nth-child(2) {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

.cookie-consent .btn:nth-child(2):hover {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
}

.cookie-consent .btn:nth-child(3) {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.cookie-consent .btn:nth-child(3):hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

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

.product-card {
  background-color: var(--text-light);
  border: 1px solid var(--neutral-grey);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-card h4 {
  font-family: 'Lato', 'Montserrat', sans-serif;
  color: var(--accent-teal);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-card li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.9rem;
}

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

.product-card .btn {
  width: 100%;
  text-align: center;
}

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

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

table th {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 1rem;
  text-align: left;
  font-family: 'Lato', 'Montserrat', sans-serif;
  font-weight: 700;
}

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

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

table tbody tr:hover {
  background-color: rgba(90, 200, 200, 0.1);
}

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

ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

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

.text-muted {
  opacity: 0.75;
  font-size: 0.9rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  header .container {
    padding: 0 1rem;
  }

  header nav ul {
    gap: 1rem;
  }

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

  .row {
    flex-direction: column;
  }

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

  .hero {
    padding: 4rem 1rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

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

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

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

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

  .cookie-consent .btn {
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 1.5rem;
  }
}
