:root {
  --color-bg-primary: #F0F4F8;
  --color-accent-teal: #8ECDD3;
  --color-accent-green: #C2E0C4;
  --color-accent-peach: #F5DAB6;
  --color-text-dark: #2C3E50;
  --color-text-light: #5A6C7D;
  --color-white: #FFFFFF;
  --color-border: #E8EDF5;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-bg-primary);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

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

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

header {
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-brand:hover {
  color: var(--color-accent-teal);
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.navbar-nav a {
  color: var(--color-text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--color-accent-teal);
}

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

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

.section-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.section-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.section-hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section-hero p {
  color: var(--color-white);
  font-size: 1.3rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

.section-alt:nth-child(even) {
  background-color: var(--color-bg-primary);
}

.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-two-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.card h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.btn-primary {
  background-color: var(--color-accent-teal);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #7AB8BD;
  box-shadow: 0 4px 12px rgba(142, 205, 211, 0.3);
}

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

.btn-secondary:hover {
  background-color: #A9D5AD;
  box-shadow: 0 4px 12px rgba(194, 224, 196, 0.3);
}

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

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

.cta-block {
  text-align: center;
  margin-top: 2rem;
}

footer {
  background-color: var(--color-text-dark);
  color: var(--color-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(--color-accent-teal);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: #B8C5D6;
  transition: color 0.3s ease;
}

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

.footer-contact {
  line-height: 1.8;
}

.footer-hours {
  font-size: 0.95rem;
  color: #B8C5D6;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.cookie-text a {
  color: var(--color-accent-teal);
}

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-accept:hover {
  background-color: #7AB8BD;
}

.cookie-decline {
  background-color: var(--color-border);
  color: var(--color-text-dark);
}

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

.disclaimer-section {
  background-color: #FFF5F0;
  border-left: 4px solid var(--color-accent-peach);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-section h4 {
  color: var(--color-text-dark);
  margin-bottom: 0.8rem;
}

.faq-item {
  background-color: var(--color-white);
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #E5EDF5;
}

.faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 1rem;
  }

  .navbar-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-hero {
    height: 300px;
  }

  .section-hero h1 {
    font-size: 2rem;
  }

  .grid-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .container-wide {
    padding: 0 1rem;
  }
}
