:root {
  --primary-olive: #7a8071;
  --light-bg: #f8f9f7;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #666666;
  --border-light: #e5e5e5;
}

* {
  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);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

.navbar-nav .nav-link {
  color: var(--text-dark);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(248, 249, 247, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 4rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.content-section {
  padding: 4rem 0;
}

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

.section-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-olive);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.info-box {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  border-left: 4px solid var(--primary-olive);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 10px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-olive) 0%, #8a9081 100%);
  color: var(--white);
  padding: 4rem 0;
  border-radius: 30px;
  margin: 3rem 0;
}

.btn-custom {
  background-color: var(--white);
  color: var(--primary-olive);
  border: 2px solid var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-olive);
  border: 2px solid var(--primary-olive);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background-color: var(--primary-olive);
  color: var(--white);
  text-decoration: none;
}

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3a3a3a 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: #cccccc;
  font-size: 0.9rem;
}

.form-control {
  border-radius: 10px;
  padding: 0.75rem;
  border: 2px solid var(--border-light);
}

.form-control:focus {
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 0.2rem rgba(122, 128, 113, 0.15);
}

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

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

.limitation-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
  border: 2px solid #f0e5c0;
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem 0;
}

.limitation-box h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.limitation-box ul {
  list-style: none;
  padding-left: 0;
}

.limitation-box li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.limitation-box li:before {
  content: "•";
  color: var(--primary-olive);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy-content {
  padding: 3rem 0;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-olive);
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .section-text {
    font-size: 1rem;
  }
  
  .hero-overlay {
    padding: 2rem 0;
    min-height: 400px;
  }
  
  .content-section {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .btn-custom, .btn-outline-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
