:root {
  --color-seafoam: #98D2C2;
  --color-rose: #D4A5A5;
  --color-charcoal: #5C636A;
  --color-ivory: #FDFBF7;
  --color-white: #FFFFFF;
  --color-dark: #2C3E50;
}

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

html, body {
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-white);
  color: var(--color-dark);
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-seafoam);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--color-rose);
}

button, .btn {
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--color-seafoam);
  background-color: var(--color-seafoam);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
}

button:hover, .btn:hover {
  background-color: var(--color-rose);
  border-color: var(--color-rose);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(152, 210, 194, 0.3);
}

button:focus, .btn:focus {
  outline: none;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 1000;
  border-bottom: 1px solid rgba(92, 99, 106, 0.1);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-seafoam);
  letter-spacing: 0.5px;
}

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

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

.nav-menu a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-seafoam);
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

section {
  padding: 120px 0;
}

section:nth-child(even) {
  background-color: var(--color-ivory);
}

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

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

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-overlay-text {
  background: rgba(44, 62, 80, 0.7);
  color: var(--color-white);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.hero-overlay-text h1 {
  color: var(--color-white);
}

.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;
  }
}

.card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(152, 210, 194, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(152, 210, 194, 0.15);
}

.card h3 {
  color: var(--color-seafoam);
  margin-bottom: 1rem;
}

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

.accordion {
  border: 1px solid rgba(92, 99, 106, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.accordion-header:hover {
  background-color: var(--color-seafoam);
  color: var(--color-white);
}

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

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

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

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

footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  color: var(--color-seafoam);
}

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

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

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

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

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

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

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

.disclaimer-box {
  background-color: var(--color-ivory);
  border-left: 4px solid var(--color-rose);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.cta-link {
  color: var(--color-seafoam);
  font-weight: 600;
  display: inline-block;
}

.cta-link:hover {
  color: var(--color-rose);
}

.quote-block {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-charcoal);
  padding: 3rem 2rem;
  background-color: var(--color-ivory);
  border-left: 4px solid var(--color-seafoam);
  margin: 2rem 0;
  border-radius: 4px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(92, 99, 106, 0.2);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-seafoam);
  box-shadow: 0 0 0 3px rgba(152, 210, 194, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-buttons button {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
}

.cookie-buttons .btn-reject {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.cookie-buttons .btn-reject:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

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

.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

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

.text-balance {
  text-wrap: balance;
}

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

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

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
