@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;700&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --color-mint-cream: #f9fcf8;
  --color-turquoise: #5a9c8e;
  --color-deep-sea: #2f5d5a;
  --color-almost-white: #fdfbf4;
  --color-text-dark: #1a1a1a;
  --color-text-light: #666666;
  --color-border-light: #e8eae8;
  --color-turquoise-light: rgba(90, 156, 142, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-almost-white);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--color-text-dark);
}

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

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

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

a:hover {
  color: var(--color-deep-sea);
}

button, .btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  background-color: var(--color-turquoise);
  color: var(--color-almost-white);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

button:hover, .btn:hover {
  background-color: var(--color-deep-sea);
  transform: translateY(-2px);
}

button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-deep-sea);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}

button:hover::before {
  transform: scaleY(1);
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 150px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

.full-bleed {
  width: 100%;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 50vw;
  padding-right: 50vw;
  transform: translateX(calc(-50vw + 50%));
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-almost-white);
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(253, 251, 244, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header.scrolled .navbar {
  transform: scale(0.8);
  transform-origin: left center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep-sea);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--color-turquoise);
}

nav {
  display: flex;
  gap: 2.5rem;
}

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

nav a:hover {
  color: var(--color-turquoise);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.hero {
  background-color: var(--color-mint-cream);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 8px;
}

.hero h1 {
  color: var(--color-deep-sea);
  text-align: center;
}

@media (max-width: 768px) {
  .hero-image {
    height: 300px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

section {
  padding: 5rem 0;
  position: relative;
}

section.bg-mint {
  background-color: var(--color-mint-cream);
}

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

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.grid-3-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.grid-3-item:hover {
  border-color: var(--color-turquoise);
  box-shadow: 0 4px 16px rgba(90, 156, 142, 0.15);
  transform: translateY(-35px) scale(1.04);
}

.grid-3-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.grid-3-item h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .two-column {
    grid-template-columns: 1fr;
  }
  
  .two-column.reverse {
    direction: ltr;
  }
}

table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--color-turquoise);
  color: white;
}

th {
  padding: 1.25rem;
  text-align: left;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
}

td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-light);
}

tbody tr:nth-child(odd) {
  background-color: var(--color-turquoise-light);
}

tbody tr:hover {
  background-color: rgba(90, 156, 142, 0.2);
}

.faq {
  margin-top: 3rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--color-turquoise);
  box-shadow: 0 2px 8px rgba(90, 156, 142, 0.1);
}

.accordion-header {
  background-color: white;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  color: var(--color-deep-sea);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--color-mint-cream);
}

.accordion-header.active {
  background-color: var(--color-turquoise-light);
  border-bottom: 2px solid var(--color-turquoise);
}

.accordion-content {
  padding: 1.5rem;
  background-color: var(--color-almost-white);
  color: var(--color-text-light);
  line-height: 1.82;
  display: none;
}

.accordion-content.active {
  display: block;
}

.accordion-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--color-turquoise);
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.quote-section {
  background: linear-gradient(135deg, var(--color-mint-cream) 0%, var(--color-turquoise-light) 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
}

.quote-section p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-deep-sea);
  margin: 0;
}

.cta-soft {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}

.cta-soft h3 {
  margin-top: 0;
}

.disclaimer-section {
  background-color: var(--color-turquoise-light);
  padding: 2rem;
  border-left: 4px solid var(--color-turquoise);
  border-radius: 6px;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  color: var(--color-deep-sea);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--color-turquoise);
  box-shadow: 0 0 0 3px rgba(90, 156, 142, 0.1);
}

footer {
  background-color: var(--color-deep-sea);
  color: var(--color-almost-white);
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .container {
  margin-bottom: 2rem;
}

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

.footer-section h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-almost-white);
}

.footer-section a {
  color: rgba(253, 251, 244, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 244, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(253, 251, 244, 0.7);
}

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

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--color-almost-white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--color-turquoise);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-deep-sea);
  color: var(--color-almost-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  background-color: var(--color-mint-cream);
  color: var(--color-deep-sea);
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-almost-white);
  border: 1px solid var(--color-almost-white);
}

.cookie-reject:hover {
  background-color: var(--color-almost-white);
  color: var(--color-deep-sea);
}

.cookie-learn {
  background-color: transparent;
  color: var(--color-almost-white);
  text-decoration: underline;
  padding: 0;
}

.cookie-learn:hover {
  color: var(--color-turquoise);
}

.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  z-index: 2001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
  max-width: 500px;
}

.thank-you-message.show {
  display: block;
}

.thank-you-message h2 {
  color: var(--color-turquoise);
  margin-top: 0;
}

.thank-you-message p {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
}
