:root {
  --primary-color: #2a9d8f;
  --secondary-color: #264653;
  --accent-color: #e9c46a;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-radius: 8px;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--secondary-color);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f2 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
}

.hero-section-small {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f2 100%);
  text-align: center;
}

.hero-section-small h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.content-section ul {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.bg-light {
  background-color: var(--light-bg);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
  object-fit: cover;
}

.card-body h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.term-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.term-card:hover {
  transform: translateY(-3px);
}

.term-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.term-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.disclaimer-section {
  border-left: 4px solid var(--primary-color);
  padding-left: 30px;
}

.cta-section {
  padding: 80px 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

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

.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.site-footer h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.site-footer ul {
  padding-left: 0;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  display: inline-block;
  margin-right: 20px;
}

.cookie-banner .btn {
  padding: 8px 25px;
}

.contact-form .form-group label {
  font-weight: 600;
  color: var(--secondary-color);
}

.contact-form .form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--border-radius);
}

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

  .hero-section .lead {
    font-size: 1rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 50px 0;
  }

  .content-section {
    padding: 40px 0;
  }
}
