:root {
  --accent-color: #8a9a5b;
  --accent-dark: #6d7a47;
  --accent-light: #a7b67e;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --warning: #ffc107;
  --danger: #dc3545;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(138, 154, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(138, 154, 91, 0.4);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
}

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

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

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

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

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

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.shadow-sm {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rounded {
  border-radius: 10px;
}

footer {
  background-color: #2c3e50;
}

footer a {
  color: var(--bg-light);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-check-label {
  line-height: 1.5;
}

#contact-form .form-control {
  border-radius: 6px;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease;
}

#contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(138, 154, 91, 0.25);
}

.alert-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: #004085;
  border-radius: 8px;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.accordion .btn-link:hover {
  color: var(--accent-color);
}

.border-warning {
  border-left: 4px solid var(--warning);
}

.border-danger {
  border-left: 4px solid var(--danger);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

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

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

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