@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --primary-blue: #0A2240;
  --accent-gold: #E1B30E;
  --soft-grey: #E0E0E0;
  --forest-green: #3A7A4A;
  --light-bg: #F5F5F5;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-color: #CCCCCC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

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

h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

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

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

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

/* ========== HEADER ========== */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--soft-grey);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  max-height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  text-decoration: none;
}

/* ========== FOOTER ========== */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
  font-size: 0.95rem;
}

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

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

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

footer p {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-disclaimer {
  background-color: rgba(225, 179, 14, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-copyright {
  border-top: 1px solid rgba(225, 179, 14, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.col {
  flex: 1;
  min-width: 280px;
}

.col-6 {
  flex: 0 0 calc(50% - 1rem);
}

.col-4 {
  flex: 0 0 calc(33.333% - 1.4rem);
}

.col-3 {
  flex: 0 0 calc(25% - 1.5rem);
}

/* ========== SECTIONS ========== */
section {
  padding: 4rem 0;
  overflow: hidden;
}

section.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem calc(50vw - 50%);
}

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

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

section.bg-blue h2,
section.bg-blue h3,
section.bg-blue h4 {
  color: var(--accent-gold);
}

section.bg-blue p {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(rgba(10, 34, 64, 0.7), rgba(10, 34, 64, 0.7)), url('images/hero-banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

/* ========== CARDS ========== */
.card {
  background-color: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.card h4 {
  margin-bottom: 1rem;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* ========== IMAGES ========== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-responsive {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.img-small {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ========== BUTTONS & CTA ========== */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-blue);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
}

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

.btn-gold:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  text-decoration: none;
}

.cta-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-link:hover {
  color: var(--accent-gold);
}

/* ========== TABLES ========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
}

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

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

table tr:hover {
  background-color: rgba(225, 179, 14, 0.05);
}

/* ========== LISTS ========== */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== DISCLAIMER BLOCKS ========== */
.disclaimer-block {
  background-color: #FFF8DC;
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.disclaimer-block strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 1.5rem;
}

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

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--soft-grey);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--text-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(225, 179, 14, 0.1);
}

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

/* ========== COOKIE BANNER ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

#cookie-banner p {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

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

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

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-learn:hover {
  background-color: rgba(225, 179, 14, 0.1);
}

/* ========== COMPOSITE LAYOUTS ========== */
.two-col-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.two-col-layout .col-text {
  flex: 1;
  min-width: 300px;
}

.two-col-layout .col-image {
  flex: 1;
  min-width: 300px;
}

.two-col-layout img {
  width: 100%;
  border-radius: 4px;
}

/* ========== SPACING UTILITIES ========== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 0;
    min-height: 400px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .col-6,
  .col-4,
  .col-3 {
    flex: 0 0 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 1rem;
    width: 100%;
  }

  .two-col-layout {
    flex-direction: column;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }

  #cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  body {
    font-size: 14px;
  }

  nav a {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  .hero {
    min-height: 300px;
  }
}
