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

html, body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fbf9f4;
  color: #333;
  line-height: 1.6;
  font-size: 18px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #4c6a4e;
}

h1 {
  font-size: 76px;
  font-weight: 600;
  line-height: 1.4;
}

h2 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.4;
}

h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.45;
}

h4, h5, h6 {
  font-size: 24px;
}

p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 74ch;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

body {
  font-weight: 400;
}

strong, .semibold {
  font-weight: 600;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: #fbf9f4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 600;
  color: #4c6a4e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: #3d563f;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #4c6a4e;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b04e39;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Main container */
.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block {
  max-width: 1320px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 110px 0;
}

.full-bleed {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 120px 2rem;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  background: linear-gradient(rgba(76, 106, 78, 0.1), rgba(76, 106, 78, 0.05));
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #2d3a2e;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  align-items: center;
  margin-bottom: 130px;
}

.grid-2.reverse {
  grid-template-columns: 45% 55%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 130px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
  margin-bottom: 130px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: #f2e9d7;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 28px;
  margin-bottom: 0.8rem;
}

.card-content p {
  font-size: 16px;
  line-height: 1.5;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

thead {
  background-color: #4c6a4e;
  color: #fff;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

td {
  padding: 16px;
  border-bottom: 1px solid #e8e3d7;
  font-size: 16px;
}

tbody tr:hover {
  background-color: #f2e9d7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #4c6a4e;
  color: #fff;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #3d563f;
  box-shadow: 0 4px 12px rgba(76, 106, 78, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #4c6a4e;
  border: 2px solid #4c6a4e;
}

.btn-secondary:hover {
  background-color: #4c6a4e;
  color: #fff;
}

/* Links */
a {
  color: #4c6a4e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b04e39;
}

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

.img-responsive {
  width: 100%;
  height: auto;
}

/* Accordion */
.accordion {
  margin-bottom: 2rem;
}

.accordion-item {
  border: 1px solid #e8e3d7;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  background-color: #f9f7f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #f2e9d7;
}

.accordion-header.active {
  background-color: #4c6a4e;
  color: #fff;
}

.accordion-content {
  padding: 20px;
  display: none;
  background-color: #fbf9f4;
}

.accordion-content.active {
  display: block;
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background-color: #4a4a4a;
  color: #fff;
  padding: 60px 2rem 30px;
  margin-top: 130px;
}

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

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

.footer-section h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #666;
  font-size: 14px;
  color: #bbb;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fbf9f4;
  border-top: 2px solid #4c6a4e;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #4c6a4e;
  color: #fff;
}

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

.cookie-reject {
  background-color: transparent;
  color: #4c6a4e;
  border: 2px solid #4c6a4e;
}

.cookie-reject:hover {
  background-color: #4c6a4e;
  color: #fff;
}

.cookie-learn {
  background-color: #b04e39;
  color: #fff;
}

.cookie-learn:hover {
  background-color: #8a3a2c;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #4c6a4e;
  box-shadow: 0 0 0 3px rgba(76, 106, 78, 0.1);
}

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

/* Disclaimer */
.disclaimer {
  background-color: #f2e9d7;
  border-left: 4px solid #b04e39;
  padding: 20px;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
}

.disclaimer-box {
  background-color: #f9f7f2;
  border: 1px solid #e8e3d7;
  padding: 30px;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 14px;
  }

  section {
    padding: 60px 0;
  }

  .full-bleed {
    padding: 60px 1rem;
  }

  .grid-2,
  .grid-2.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .hero {
    min-height: 350px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

  table {
    font-size: 14px;
  }

  th, td {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  section {
    padding: 40px 0;
  }

  .full-bleed {
    padding: 40px 1rem;
  }

  nav {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

  .hero {
    min-height: 250px;
  }

  .hero h1 {
    font-size: 32px;
  }
}
