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

:root {
  --british-green: #4A7043;
  --warm-biscuit: #E8DAB2;
  --burgundy: #7A2E3F;
  --charcoal: #333333;
  --off-white: #F5F3F0;
  --light-gray: #E8E6E1;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background-color: #FFFFFF;
  line-height: 1.8;
}

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

h1 {
  font-size: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  border-bottom: 2px solid var(--british-green);
  padding-bottom: 1rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  color: var(--burgundy);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

strong {
  font-weight: 700;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--light-gray);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--british-green);
  cursor: pointer;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

nav a {
  margin-left: 2rem;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

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

/* Main Content */
main {
  margin-top: 100px;
  min-height: calc(100vh - 100px);
}

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

.section {
  padding: 4rem 0;
  border-top: 1px solid var(--light-gray);
}

.section:first-of-type {
  border-top: none;
}

.hero {
  background-color: var(--off-white);
  padding: 4rem 0;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.card:hover {
  border-color: var(--british-green);
  box-shadow: 0 4px 12px rgba(74, 112, 67, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

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

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

/* Blog Cards */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.blog-card:hover {
  border-color: var(--british-green);
}

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

.blog-card-content {
  padding: 2rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--british-green);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--british-green);
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--burgundy);
  border-color: var(--burgundy);
  text-decoration: none;
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: var(--british-green);
  border: 2px solid var(--british-green);
}

.btn-secondary:hover {
  background-color: var(--british-green);
  color: #FFFFFF;
}

/* Forms */
form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--british-green);
  box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.1);
}

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

.form-disclaimer {
  background-color: #FFF8E7;
  padding: 1rem;
  border-left: 4px solid var(--warm-biscuit);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #333;
}

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

.accordion-item {
  border: 1px solid var(--light-gray);
  margin-bottom: 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--off-white);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--light-gray);
}

.accordion-header.active {
  background-color: var(--british-green);
  color: #FFFFFF;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.show {
  max-height: 1000px;
  padding: 1.5rem;
}

.accordion-toggle::after {
  content: '+';
  font-size: 1.5rem;
}

.accordion-header.active .accordion-toggle::after {
  content: '−';
}

/* Footer */
footer {
  background-color: var(--charcoal);
  color: #FFFFFF;
  margin-top: 4rem;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--warm-biscuit);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--warm-biscuit);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
}

.footer-message {
  color: var(--warm-biscuit);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  display: none;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--burgundy);
}

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

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

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

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

/* Tabs */
.tabs {
  margin-top: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--light-gray);
  background-color: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.tab-btn.active {
  border-color: var(--british-green);
  background-color: var(--british-green);
  color: #FFFFFF;
}

.tab-btn:hover {
  border-color: var(--british-green);
}

.tab-content {
  display: none;
  padding: 2rem;
  background-color: var(--off-white);
  border-radius: 2px;
}

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

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

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

/* Disclaimer Boxes */
.disclaimer-box {
  background-color: #FFF3CD;
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
  font-size: 0.95rem;
}

.disclaimer-title {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

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

  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  main {
    margin-top: 150px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

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

  #cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    justify-content: flex-start;
    width: 100%;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  nav a {
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }

  main {
    margin-top: 120px;
  }

  .cards-grid,
  .blog-cards {
    grid-template-columns: 1fr;
  }
}
