:root {
  --primary-green: #0D684C;
  --light-green: #F0F8F5;
  --text-dark: #1A1A1A;
  --text-gray: #666666;
  --border-color: #E5E5E5;
  --white: #FFFFFF;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
  min-height: 100vh;
}

.header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--primary-green);
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.home-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  font-size: 0.95rem;
}

.home-btn:hover {
  opacity: 0.9;
  color: var(--white);
  text-decoration: none;
}

main {
  padding-top: 80px;
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.disclaimer-box {
  background: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

.section p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.section ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.section li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  max-height: 350px;
  object-fit: cover;
}

.img-left {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 400px;
}

.img-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 400px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(13, 104, 76, 0.1);
}

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

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

th {
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

tr:hover {
  background: var(--light-green);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.8;
}

.cta-box {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.btn-light {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  font-weight: 600;
}

.btn-light:hover {
  opacity: 0.9;
  color: var(--primary-green);
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-primary:hover {
  opacity: 0.9;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

.cookie-text a {
  color: var(--primary-green);
  text-decoration: underline;
}

.btn-accept {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-accept:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .section h2 {
    font-size: 1.5rem;
  }

  .img-left,
  .img-right {
    float: none;
    margin: 1.5rem auto;
    max-width: 100%;
    display: block;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-accept {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}
