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

:root {
  --primary-color: #224A3B;
  --accent-warm: #E79A33;
  --accent-grey: #D9D9D9;
  --accent-terracotta: #B26E63;
  --dark-text: #1a1a1a;
  --light-text: #ffffff;
  --border-light: #e8e8e8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-text);
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #555;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--light-text);
  border-bottom: 1px solid var(--border-light);
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar {
  background-color: transparent !important;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-warm) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-warm);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

main {
  margin-top: 70px;
  padding-top: 0;
}

section {
  padding: 6rem 0;
}

.section-padding {
  padding: 5rem 2rem;
}

.hero {
  background: linear-gradient(135deg, rgba(34, 74, 59, 0.9) 0%, rgba(34, 74, 59, 0.7) 100%),
              url('images/hero.jpg') center/cover;
  color: var(--light-text);
  padding: 8rem 0;
  text-align: center;
}

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

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

.section-alt {
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--accent-warm);
  border-radius: 2px;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(34, 74, 59, 0.2);
}

.cta-button-light {
  background-color: var(--accent-warm);
  border-color: var(--accent-warm);
  color: var(--light-text);
}

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

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.card {
  background-color: var(--light-text);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accent-block {
  background-color: #f5f5f5;
  border-left: 4px solid var(--accent-warm);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.accent-block p {
  color: var(--primary-color);
  font-weight: 500;
}

footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h4 {
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

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

footer a:hover {
  color: var(--light-text);
}

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

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}

.cookie-text a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent-warm);
  color: var(--dark-text);
}

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

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

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

.disclaimer-box {
  background-color: #fff9f0;
  border: 1px solid var(--accent-warm);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-warm);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--dark-text);
  margin: 0.5rem 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(34, 74, 59, 0.1);
}

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

.form-disclaimer {
  background-color: #f5f5f5;
  border-left: 4px solid var(--accent-warm);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.form-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.list-section {
  list-style: none;
  padding: 0;
}

.list-section li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.list-section li:last-child {
  border-bottom: none;
}

.list-section li::before {
  content: '▸ ';
  color: var(--accent-warm);
  font-weight: bold;
  margin-right: 0.5rem;
}

.breadcrumb-nav {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

.breadcrumb-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--accent-warm);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  .two-column-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero {
    padding: 4rem 0;
  }

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

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

  section {
    padding: 3rem 1rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

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

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

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

  main {
    margin-top: 60px;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .section-padding {
    padding: 3rem 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

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