:root {
  --accent: #6BB8A8;
  --accent-light: #E8F4F1;
  --text-dark: #2D3748;
  --text-muted: #718096;
  --bg-light: #F7FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.35rem;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #4A9A8A;
  text-decoration: underline;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent) !important;
}

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

.hero-section {
  background-color: var(--accent-light);
  padding: 4rem 0;
}

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

.hero-section p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.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-color: var(--accent);
}

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

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

.content-image-right {
  float: none;
  margin-bottom: 1.5rem;
}

.content-image-left {
  float: none;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-image-right {
    float: right;
    max-width: 45%;
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  
  .content-image-left {
    float: left;
    max-width: 45%;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.card-simple {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.card-simple:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.card-simple h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card-simple p {
  font-size: 0.95rem;
}

.info-box {
  background-color: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border: 1px solid #F0E6C8;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  font-size: 1.1rem;
  color: #8B7355;
  margin-bottom: 0.75rem;
}

.disclaimer-box p {
  color: #6B5D4D;
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.faq-item p {
  margin-bottom: 0;
}

.btn-read {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  text-decoration: none !important;
}

.btn-read:hover {
  background-color: #4A9A8A;
  color: var(--white) !important;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white) !important;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107, 184, 168, 0.15);
  outline: none;
}

.contact-form label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info strong {
  color: var(--text-dark);
}

footer {
  background-color: var(--text-dark);
  color: #A0AEC0;
  padding: 3rem 0 1.5rem;
}

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

footer p {
  color: #A0AEC0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: #A0AEC0;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #4A5568;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.educational-notice {
  background-color: var(--accent-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
}

.page-header {
  background-color: var(--accent-light);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  margin-bottom: 0;
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.policy-content ul {
  color: var(--text-muted);
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  footer {
    text-align: center;
  }
  
  footer .col-md-4 {
    margin-bottom: 2rem;
  }
}
