:root {
  --primary-color: #E0F2F7;
  --accent-green: #4CAF50;
  --accent-yellow: #FFC107;
  --accent-blue: #2196F3;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-light: #EEEEEE;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  margin-top: 3rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header .navbar {
  padding: 1rem 0;
}

header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
}

header .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
  color: var(--accent-green);
}

/* Main Content */
main {
  margin-top: 80px;
}

section {
  padding: 4rem 2rem;
}

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

/* Hero Section */
.hero {
  padding: 0;
  margin-top: 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(224, 242, 247, 0.7);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-dark);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Two Column Layout */
.row-two-column {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.row-two-column .col-text {
  flex: 1;
}

.row-two-column .col-image {
  flex: 1;
}

.row-two-column img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.row-two-column.reverse {
  flex-direction: row-reverse;
}

/* Cards Section */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--primary-color);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--accent-green);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
}

table th {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border-light);
  font-weight: 700;
}

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

table tr:hover {
  background-color: rgba(224, 242, 247, 0.3);
}

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* CTA Buttons */
.btn-read {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--accent-green);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-read:hover {
  background-color: #45a049;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent-blue);
}

.btn-secondary:hover {
  background-color: #0b7dda;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Section Background */
.section-light {
  background-color: var(--primary-color);
}

/* Principles Section */
.principles-intro {
  text-align: center;
  margin-bottom: 3rem;
}

/* Disclaimer Block */
.disclaimer {
  background-color: rgba(255, 193, 7, 0.08);
  border-left: 4px solid var(--accent-yellow);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Form */
.contact-section {
  background-color: var(--primary-color);
  padding: 3rem 2rem;
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  background-color: rgba(33, 150, 243, 0.08);
  padding: 1rem;
  border-radius: var(--radius);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

footer h4 {
  color: var(--accent-green);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-green);
}

.contact-info {
  line-height: 1.8;
  font-size: 0.95rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 3px solid var(--accent-green);
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #45a049;
}

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  text-decoration: none;
}

.cookie-learn:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--radius);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
}

.close-modal {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.close-modal:hover {
  color: var(--text-dark);
}

/* Thank You Modal */
.thank-you-modal {
  text-align: center;
}

.thank-you-modal h2 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.thank-you-modal p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .row-two-column {
    flex-direction: column;
    gap: 1.5rem;
  }

  .row-two-column.reverse {
    flex-direction: column;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 300px;
  }

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

  section {
    padding: 2.5rem 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .modal-content {
    width: 95%;
    margin: 20% auto;
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  header .navbar-nav {
    margin-top: 1rem;
  }

  header .navbar-nav .nav-link {
    margin-left: 0;
    display: block;
    padding: 0.5rem 0;
  }

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

  table {
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 0.75rem;
  }
}
