:root {
  --primary: #F8F8F8;
  --accent-green: #4CAF50;
  --accent-blue: #2196F3;
  --accent-yellow: #FFC107;
  --text-dark: #2c3e50;
  --text-light: #555;
  --border: #e0e0e0;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lora', serif;
  background-color: var(--primary);
  color: var(--text-dark);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

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

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.nav-links a.active {
  color: var(--accent-green);
  font-weight: 600;
}

main {
  min-height: calc(100vh - 200px);
  max-width: 1400px;
  margin: 0 auto;
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

section {
  padding: 100px 2rem;
  border-bottom: 1px solid var(--border);
}

section:nth-child(even) {
  background-color: white;
}

section:nth-child(odd) {
  background-color: var(--primary);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

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

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

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

.card h3 {
  margin-top: 0;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--accent-green);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #45a049;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background-color: var(--accent-blue);
}

.btn-secondary:hover {
  background-color: #1976d2;
}

footer {
  background-color: #333;
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

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

.footer-section a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #bbb;
}

.disclaimer {
  background-color: #f5f5f5;
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 1rem;
}

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

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

.info-block {
  padding: 1.5rem;
  background: var(--primary);
  border-radius: 8px;
}

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

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.list-styled {
  list-style: none;
  margin: 1.5rem 0;
}

.list-styled li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
}

.list-styled li:before {
  content: "•";
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th {
  background-color: var(--accent-green);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
}

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

tr:hover {
  background-color: var(--primary);
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-green);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

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

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

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
  background-color: #45a049;
}

.cookie-btn.decline:hover {
  background-color: var(--primary);
}

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

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

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

  section {
    padding: 60px 1rem;
  }

  .hero-section {
    height: 300px;
  }

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

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

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

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