:root {
  --sage-green: #9CAF88;
  --sage-green-light: #B8C9A9;
  --sage-green-dark: #7A8F6A;
  --bg-primary: #FAFAFA;
  --bg-secondary: #F5F5F5;
  --text-primary: #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --border-color: #E8E8E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--sage-green-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage-green);
  text-decoration: none;
}

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

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-green-dark);
}

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

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

.nav-link:hover {
  color: var(--sage-green-dark);
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
  padding: 2rem 0;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-green) 0%, var(--sage-green-light) 100%);
  border-radius: 2px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.content-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.content-image-large {
  height: 300px;
}

.info-block {
  padding: 3rem 0;
}

.info-block-content {
  padding: 2rem;
}

.info-block-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-block-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.limits-context-block {
  background: linear-gradient(135deg, var(--sage-green-light) 0%, var(--sage-green) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
}

.limits-context-block h2 {
  color: var(--white);
}

.limits-context-block p {
  color: rgba(255, 255, 255, 0.95);
}

.cta-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--sage-green-dark) 0%, var(--sage-green) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 175, 136, 0.4);
}

.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--sage-green-light);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sage-green-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-disclaimer {
  background: rgba(156, 175, 136, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.page-content {
  padding: 2rem 0 4rem;
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.2);
  outline: none;
}

.form-disclaimer {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-info {
  background: linear-gradient(135deg, var(--sage-green-light) 0%, var(--sage-green) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-info h3 {
  color: var(--white);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.95);
}

.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2rem;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.three-images-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.three-images-row img {
  flex: 1;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .hero-image {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .info-block-image img {
    height: 250px;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-image {
    height: 220px;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .limits-context-block {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .three-images-row {
    flex-direction: column;
  }
  
  .three-images-row img {
    height: 200px;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
}
