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

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fdf8 100%);
  min-height: 100vh;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 107, 82, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0F6B52;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #555;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0F6B52;
}

.main-content {
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #0F6B52;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 2rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: #0F6B52;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0F6B52;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.section-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.image-left,
.image-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.disclaimer-box {
  background: rgba(15, 107, 82, 0.05);
  border-left: 3px solid #0F6B52;
  padding: 1.5rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #0F6B52;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

table th {
  background: #0F6B52;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 400;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 107, 82, 0.1);
  color: #555;
}

table tr:last-child td {
  border-bottom: none;
}

.cta-button {
  display: inline-block;
  background: #0F6B52;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 300;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: #0d5a44;
  transform: translateY(-2px);
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(15, 107, 82, 0.1);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 400;
  color: #0F6B52;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid rgba(15, 107, 82, 0.2);
  border-radius: 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0F6B52;
}

.footer {
  background: rgba(15, 107, 82, 0.05);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(15, 107, 82, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #0F6B52;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: #0F6B52;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 107, 82, 0.1);
  color: #999;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(15, 107, 82, 0.1);
  padding: 1.5rem;
  z-index: 2000;
  backdrop-filter: blur(10px);
  display: none;
}

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

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

.cookie-banner-text {
  flex: 1;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-accept {
  background: #0F6B52;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: #0d5a44;
}

.page-header {
  padding: 6rem 0 3rem;
  text-align: center;
  background: rgba(15, 107, 82, 0.03);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #0F6B52;
  margin-bottom: 1rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #0F6B52;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #0F6B52;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .two-column,
  .image-left,
  .image-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
}
