:root {
  --primary: #1a5f6f;
  --secondary: #e8dcc8;
  --accent: #c85436;
  --neutral: #a8a8a8;
  --white: #ffffff;
  --black: #1a1a1a;
  --light-gray: #f5f5f5;
}

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

html, body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.8rem;
  display: inline-block;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  max-width: 90ch;
  font-size: 1rem;
}

body {
  background-color: var(--white);
  padding-top: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

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

header .logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  letter-spacing: 0.05em;
}

header .logo:hover {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
}

nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

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

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

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  margin-top: 6rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

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

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

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

section:last-of-type {
  border-bottom: none;
}

.hero {
  background: linear-gradient(135deg, rgba(26, 95, 111, 0.85) 0%, rgba(200, 84, 54, 0.7) 100%);
  color: var(--white);
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-main.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.tagline {
  background-color: var(--accent);
  color: var(--white);
  padding: 1.5rem 3rem;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  margin: 2rem 0;
}

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

.two-column img,
.two-column-left img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.two-column-left img {
  order: -1;
}

.info-block {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
}

.info-block h3 {
  margin-top: 0;
  color: var(--primary);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.bullet-list {
  list-style-type: none;
  margin-left: 0;
}

.bullet-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.bullet-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.definition-box {
  background-color: var(--secondary);
  border: 2px solid var(--accent);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0;
}

.definition-box h4 {
  color: var(--primary);
  margin-top: 0;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

.sidebar {
  background-color: var(--light-gray);
  padding: 2.5rem;
  margin: 2rem 0;
  border-right: 3px solid var(--primary);
}

.sidebar h4 {
  color: var(--primary);
  margin-top: 0;
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--neutral);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.3rem;
}

.card p {
  flex-grow: 1;
  font-size: 0.95rem;
}

.accordion {
  border: 1px solid var(--neutral);
  margin-bottom: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--neutral);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1.5rem;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  transition: background-color 0.3s ease;
  user-select: none;
}

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

.accordion-header.active {
  background-color: var(--secondary);
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.accordion-content {
  display: none;
  padding: 2rem 1.5rem;
  background-color: var(--light-gray);
  color: var(--black);
}

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

.button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.button-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--accent);
}

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

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

label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-size: 0.95rem;
}

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 111, 0.1);
}

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

.form-disclaimer {
  background-color: #f0e8e0;
  border: 1px solid var(--neutral);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-text {
  flex: 1;
  margin-right: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-button {
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent);
  color: var(--white);
}

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

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.cookie-learn {
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  text-decoration: none;
}

.cookie-learn:hover {
  background-color: rgba(232, 220, 200, 0.1);
  color: var(--white);
}

.disclaimer-section {
  background-color: var(--light-gray);
  padding: 2rem;
  border-left: 4px solid var(--accent);
  margin: 3rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.disclaimer-section h4 {
  color: var(--primary);
  margin-top: 0;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

.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(--primary);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

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

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

.table tr:hover {
  background-color: rgba(26, 95, 111, 0.05);
}

.success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0;
  text-align: center;
  font-weight: 500;
}

.separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 3rem 0;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-gray);
  border: 1px solid var(--neutral);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

.stat-label {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
    height: auto;
    gap: 1rem;
  }

  header {
    height: auto;
  }

  main {
    margin-top: 120px;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 6rem 0;
  }

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

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

  .two-column-left img {
    order: 0;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

  footer .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-text {
    margin-right: 0;
  }

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

  .cookie-button {
    width: 100%;
  }

  .stat-block {
    grid-template-columns: 1fr 1fr;
  }

  .stat-block.single {
    grid-template-columns: 1fr;
  }
}
