@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --charcoal-gray: #333333;
  --forest-green: #2E5B3F;
  --pale-gold: #E8C39E;
  --steel-blue: #5A8CA8;
  --light-bg: #F8F6F3;
  --border-light: #E5E0DA;
}

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--charcoal-gray);
  background-color: #FFFFFF;
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--charcoal-gray);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

.subheading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--steel-blue);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

a:hover {
  color: var(--forest-green);
}

header {
  background-color: var(--charcoal-gray);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pale-gold);
  text-decoration: none;
}

.logo-text:hover {
  color: var(--pale-gold);
}

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

nav a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--charcoal-gray);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: slideInDown 0.3s ease;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu a {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

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

main {
  padding: 0;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6vw;
}

section {
  padding: 4rem 0;
  animation: fadeInUp 0.6s ease;
}

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

.hero {
  background: linear-gradient(135deg, rgba(46, 91, 63, 0.1) 0%, rgba(90, 140, 168, 0.05) 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal-gray);
}

.hero p {
  font-size: 1.2rem;
  color: var(--steel-blue);
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

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

.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: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.row-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .row, .row.reverse {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

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

.card {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--forest-green);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left-color: var(--pale-gold);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  color: var(--forest-green);
}

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

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
}

thead {
  background-color: var(--forest-green);
  color: #FFFFFF;
}

th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--forest-green);
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

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

.bullet-list {
  list-style: none;
  margin: 2rem 0;
}

.bullet-list li {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.bullet-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.disclaimer {
  background-color: #FFF9F0;
  border-left: 4px solid var(--pale-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--charcoal-gray);
}

.cta-button {
  display: inline-block;
  background-color: var(--forest-green);
  color: #FFFFFF;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--steel-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
  background-color: var(--steel-blue);
}

.cta-button.secondary:hover {
  background-color: var(--forest-green);
}

footer {
  background-color: var(--charcoal-gray);
  color: #FFFFFF;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--forest-green);
}

footer .container {
  padding: 0 6vw;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  color: var(--pale-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: #E8E8E8;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--pale-gold);
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #B8B8B8;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(46, 91, 63, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal-gray);
  color: #FFFFFF;
  padding: 1.5rem 6vw;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  animation: slideUp 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-content {
  flex: 1;
  font-size: 0.9rem;
}

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

.cookie-button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button.accept {
  background-color: var(--forest-green);
  color: #FFFFFF;
}

.cookie-button.accept:hover {
  background-color: var(--pale-gold);
  color: var(--charcoal-gray);
}

.cookie-button.reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

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

.cookie-button.learn {
  background-color: var(--steel-blue);
  color: #FFFFFF;
}

.cookie-button.learn:hover {
  background-color: var(--forest-green);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
    text-align: center;
  }
}

.educational-badge {
  display: inline-block;
  background-color: var(--pale-gold);
  color: var(--charcoal-gray);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.highlight {
  background-color: #FFF9F0;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
}
