:root {
  --color-primary: #2F4F4F;
  --color-accent-1: #8FBC8F;
  --color-accent-2: #A0522D;
  --color-accent-3: #D2B48C;
  --color-neutral-light: #F5F5F5;
  --color-neutral-medium: #D3D3D3;
  --color-text-dark: #1a1a1a;
  --color-text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--color-text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

header {
  background-color: var(--color-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

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

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 600;
}

nav a:hover {
  color: var(--color-accent-1);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }
  
  nav a {
    display: block;
    padding: 0.5rem 0;
  }
}

footer {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

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

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent-1);
}

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

.disclaimer-footer {
  background-color: var(--color-accent-2);
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #ffffff;
}

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

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 2.5rem 0 1.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
}

h3 {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent-2);
  margin: 1.5rem 0 1rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  text-align: justify;
}

section {
  margin: 4rem 0;
  padding: 2rem;
  background-color: var(--color-neutral-light);
  border-left: 6px solid var(--color-accent-1);
}

section:nth-child(even) {
  background-color: #ffffff;
  border-left: 6px solid var(--color-accent-2);
}

section img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.content-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 2rem 0;
}

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

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

button, .btn {
  background-color: var(--color-accent-1);
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--color-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(47, 79, 79, 0.8) 100%);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.hero-section h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: #ffffff;
  border: 1px solid var(--color-neutral-medium);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--color-accent-1);
}

.card h3 {
  margin-top: 0;
}

.context-disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: #856404;
  font-size: 0.95rem;
}

.context-disclaimer h3 {
  color: #856404;
  margin-top: 0;
}

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(--color-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-neutral-medium);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-1);
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  z-index: 1000;
  flex-wrap: wrap;
}

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

.cookie-text {
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

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

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

.cookie-accept {
  background-color: var(--color-accent-1);
  color: #ffffff;
}

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

.cookie-refuse {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.cookie-more {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  display: inline-block;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

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

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

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

.blog-card h3 {
  margin-top: 0;
}

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

.read-more {
  color: var(--color-accent-1);
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--color-accent-2);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table th {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.table tr:nth-child(even) {
  background-color: var(--color-neutral-light);
}

.table tr:hover {
  background-color: rgba(143, 188, 143, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  main {
    padding: 1rem;
  }
  
  section {
    padding: 1.5rem;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent-1), transparent);
  margin: 3rem 0;
}

.highlight {
  background-color: rgba(143, 188, 143, 0.1);
  padding: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent-1);
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-radius: 6px;
  border-top: 4px solid var(--color-accent-1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-accent-2);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-text-light);
  font-size: 1rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 1rem 0;
}

.breadcrumb a {
  color: var(--color-accent-1);
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-accent-1);
  font-weight: 600;
}
