:root {
  --primary-light: #f7fafc;
  --secondary-light: #e9f0f5;
  --dark: #24333f;
  --accent-teal: #6fd3c8;
  --accent-blue: #9fa8ff;
  --accent-beige: #f0d9b5;
  --text-main: #24333f;
  --text-light: #5a6b79;
  --border-light: #e9f0f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--primary-light);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

header {
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(36, 51, 63, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent-teal);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-main);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  nav ul {
    gap: 1rem;
  }
}

section {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(233, 240, 245, 0.9) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 1;
}

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-teal);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid var(--accent-teal);
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-teal);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(111, 211, 200, 0.2);
}

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

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

.content-section {
  background-color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(36, 51, 63, 0.05);
}

.content-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 2rem;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

.card:hover {
  box-shadow: 0 8px 16px rgba(36, 51, 63, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
}

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

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

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

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

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

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

.footer-section p {
  font-size: 0.95rem;
  color: #b8c5d0;
  margin-bottom: 0.5rem;
}

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

.accordion {
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-button {
  background-color: var(--secondary-light);
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:hover {
  background-color: #dde8f0;
}

.accordion-button.active {
  background-color: var(--accent-teal);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 2rem;
}

.accordion-content p {
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-teal);
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.to-top-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: var(--accent-teal);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.to-top-btn:hover {
  background-color: var(--accent-blue);
  text-decoration: none;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.legal-content {
  background-color: white;
  padding: 3rem;
  border-radius: 4px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

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

.spacer {
  height: 3rem;
}

@media (max-width: 768px) {
  .spacer {
    height: 1.5rem;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 2rem;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 8px rgba(36, 51, 63, 0.1);
  }

  nav ul.active {
    max-height: 400px;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  nav {
    flex-wrap: wrap;
  }
}
