@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Slab:wght@700&display=swap');

:root {
  --primary-navy: #1A2537;
  --accent-olive: #6B8E23;
  --accent-amber: #E0B589;
  --accent-slate: #6C8296;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #3A3A3A;
  --text-primary: #1A2537;
  --text-secondary: #6C8296;
  --border-color: #E0B589;
}

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

html, body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

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

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8vw;
}

.section {
  padding: 150px 0;
  border-top: 1px solid rgba(224, 181, 137, 0.2);
}

.section-hero {
  padding: 180px 8vw;
  background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(26, 37, 55, 0.95) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 54px;
}

.section-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.row-content {
  flex: 1;
  min-width: 0;
}

.row-image {
  flex: 1;
  min-width: 0;
}

.row-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 37, 55, 0.15);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  background-color: rgba(224, 181, 137, 0.1);
  border-color: var(--accent-olive);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 37, 55, 0.15);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.list-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.list-item {
  padding: 25px;
  background: var(--light-gray);
  border-left: 4px solid var(--accent-olive);
  border-radius: 8px;
}

.list-item h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.list-item p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-olive);
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-olive);
}

.cta-secondary {
  background-color: transparent;
  color: var(--accent-olive);
  border: 2px solid var(--accent-olive);
}

.cta-secondary:hover {
  background-color: var(--accent-olive);
  color: var(--white);
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 8vw;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(26, 37, 55, 0.08);
}

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

.logo {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

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

footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 8vw;
  margin-top: 80px;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.footer-section p, .footer-section a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(224, 181, 137, 0.3);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
  background: rgba(224, 181, 137, 0.1);
  border-left: 4px solid var(--accent-olive);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-olive);
  background-color: rgba(224, 181, 137, 0.05);
}

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

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-navy);
  color: var(--white);
  padding: 20px 8vw;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 20px rgba(26, 37, 55, 0.3);
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-accept {
  background: var(--accent-olive);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent-amber);
  color: var(--primary-navy);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background: transparent;
  color: var(--accent-amber);
  text-decoration: underline;
  padding: 8px 0;
  border: none;
}

.cookie-learn:hover {
  color: var(--white);
}

.hidden {
  display: none !important;
}

@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .row {
    flex-direction: column !important;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html, body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .section {
    padding: 80px 20px;
  }

  .section-hero {
    padding: 100px 20px;
  }

  .section-hero h1 {
    font-size: 36px;
  }

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

  .list-items {
    grid-template-columns: 1fr;
  }

  header {
    padding: 15px 20px;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
  }

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

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