:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #111827;
  --border: #e5e7eb;
  --shadow: 0 20px 40px rgba(0,0,0,0.12);
}
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
  }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* Icons */
  .icon {
    width: 0.75rem;
    height: 0.75rem;
    fill: white; /* White color */
  }

  /* Top slim contact bar */
  .top-contact {
    background-color: #2E6F6A;
    color: white;
    padding: 8px 0;
    font-size: 0.75rem;
    text-align: left;
  }
  .top-contact a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
  }
  .top-contact a:hover { text-decoration: underline; }

  /* Main header with nav */
  header.main-header {
    background-color: white;
    color: #2E6F6A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .main-header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .main-header .contact-info-main {
    font-weight: bold;
  }
  .main-header .contact-info-main a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
  }
  .main-header .contact-info-main a:hover { text-decoration: underline; }

  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav a {
    color: #2E6F6A;
    text-decoration: none;
    font-weight: 500;
  }
  nav a:hover { text-decoration: underline; }

  main { padding: 50px 0; }
  h1 { color: #2E6F6A; margin-bottom: 25px; font-size: 2.4rem; }
  h2 { color: #2E6F6A; margin: 45px 0 20px; font-size: 1.9rem; border-bottom: 2px solid #eee; padding-bottom: 10px; }
  .values-list { list-style: disc; padding-left: 30px; margin: 20px 0; }
  .values-list li { margin-bottom: 12px; font-size: 1.1rem; }
  .locations { margin-top: 30px; padding: 20px; background-color: #f0f4f8; border-radius: 8px; }
  .cta { margin: 40px 0; text-align: center; }
  .cta a {
    background-color: #2E6F6A;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
  }
  .cta a:hover { background-color: #2E6F6A; }

  footer {
    background-color: #2E6F6A;
    color: white;
    padding: 30px 0;
    text-align: center;
  }
  footer a { color: white; text-decoration: none; }
  footer a:hover { text-decoration: underline; }

  @media (max-width: 768px) {
    .main-header .inner { flex-direction: column; text-align: center; }
    .top-contact { font-size: 0.9rem; }
  }


/* Banner */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: none;
  animation: slideUp 0.4s ease;
  z-index: 1000;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.cookie-consent p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  cursor: pointer;
  background: #fff;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
}

.btn-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  flex: 100%;
  margin-top: 6px;
}

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-box {
  background: #fff;
  width: 360px;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.modal-box h4 {
  margin-top: 0;
  margin-bottom: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

/* Toggle */
.switch {
  position: relative;
  width: 42px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: var(--accent);
}

input:checked + .slider::before {
  transform: translateX(18px);
}

nav a.active {
  color: #2E6F6A; 
  font-weight: bold; 
}
 