:root {
  --primary-color: #E0F2F1;
  --accent-1: #00897B;
  --accent-2: #4DB6AC;
  --accent-3: #80CBC4;
  --white: #FFFFFF;
  --dark-text: #212121;
  --light-gray: #F5F5F5;
  --border-color: #E0E0E0;
}

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

html, body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--accent-1);
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--accent-1);
}

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

body {
  padding-top: 70px;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.nav-link.active {
  color: var(--accent-1) !important;
  border-bottom: 2px solid var(--accent-1);
  padding-bottom: 0.5rem;
}

section {
  padding: 4rem 0;
  width: 100%;
}

section.hero {
  background-color: var(--primary-color);
  padding: 5rem 0;
  text-align: center;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.two-column {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.two-column-left {
  flex: 1;
  min-width: 300px;
}

.two-column-right {
  flex: 1;
  min-width: 300px;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,137,123,0.15);
  transform: translateY(-4px);
}

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

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-1);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

.btn:hover {
  background-color: #006B63;
  box-shadow: 0 4px 12px rgba(0,137,123,0.25);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #3BA49B;
}

.accordion-button {
  background-color: var(--white);
  color: var(--dark-text);
  font-weight: 500;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  border: 1px solid var(--border-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--accent-1);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 0.25rem rgba(0,137,123,0.25);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

form {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-text);
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Lato', 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #DDD;
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-section ul li a {
  color: var(--accent-2);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #AAA;
}

.disclaimer-badge {
  background-color: var(--accent-3);
  color: var(--dark-text);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050;
}

.modal-backdrop.show {
  display: block;
}

.modal-dialog {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  z-index: 1051;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-dialog.show {
  display: block;
}

.modal-content {
  padding: 2rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.btn-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark-text);
  padding: 0;
  line-height: 1;
}

.modal-body {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.modal-body ul, .modal-body ol {
  margin: 1rem 0 1rem 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
}

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

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

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-2);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #006B63;
}

.cookie-decline {
  background-color: #666;
  color: var(--white);
}

.cookie-decline:hover {
  background-color: #555;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.cookie-learn:hover {
  background-color: rgba(77, 182, 172, 0.1);
}

.alert-info {
  background-color: var(--primary-color);
  border: 1px solid var(--accent-2);
  color: var(--dark-text);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-3) 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h3 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hero h1 {
  color: var(--accent-1);
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero img {
  max-width: 500px;
  width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  body { padding-top: 60px; }
  
  .two-column {
    flex-direction: column;
    gap: 2rem;
  }
  
  .two-column img {
    max-width: 100%;
  }
  
  section { padding: 2.5rem 0; }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    justify-content: space-between;
    width: 100%;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
  
  form {
    padding: 1.5rem;
  }
  
  .hero img {
    max-width: 100%;
  }
}
