:root {
  --midnight-navy: #1A2A44;
  --pale-moonlight: #F8F9FC;
  --warm-dusk: #C69C6D;
  --soft-periwinkle: #8C9ABF;
  --text-dark: #1A2A44;
  --text-light: #F8F9FC;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.76;
  color: var(--text-dark);
  background-color: var(--pale-moonlight);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Cormorant Garamond', serif;
  font-weight: bold;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
  h1 {
    font-size: 76px;
  }
}

h2 {
  font-size: 42px;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 28px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--warm-dusk);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.76;
}

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

a:hover {
  color: var(--soft-periwinkle);
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(248, 249, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 42, 68, 0.1);
  z-index: 100;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Garamond', 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--midnight-navy);
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 16px;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--warm-dusk) !important;
}

.container-main {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 768px) {
  .container-main {
    padding: 0 20px;
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--midnight-navy) 0%, #2d3f57 100%);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(248,249,252,0.1)"/><circle cx="50" cy="30" r="0.5" fill="rgba(248,249,252,0.1)"/><circle cx="80" cy="50" r="1.5" fill="rgba(248,249,252,0.05)"/><circle cx="30" cy="70" r="1" fill="rgba(248,249,252,0.1)"/><circle cx="70" cy="80" r="0.8" fill="rgba(248,249,252,0.08)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.hero-section h1 {
  color: var(--pale-moonlight);
  font-size: 76px;
  line-height: 1.12;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--soft-periwinkle);
  margin-bottom: 2rem;
}

.content-section {
  padding: 80px 0;
  background-color: var(--pale-moonlight);
}

.content-section:nth-child(even) {
  background-color: var(--midnight-navy);
  color: var(--text-light);
}

.content-section:nth-child(even) h2 {
  color: var(--soft-periwinkle);
}

.content-section:nth-child(even) h3 {
  color: var(--warm-dusk);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-content.reverse {
    direction: rtl;
  }
  
  .section-content.reverse > * {
    direction: ltr;
  }
}

.section-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.section-image:hover {
  transform: scale(1.04);
}

.section-text {
  padding: 20px;
}

.content-section:nth-child(even) .section-text {
  color: var(--text-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 60px 0;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: white;
  border: 1px solid rgba(26, 42, 68, 0.1);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.content-section:nth-child(even) .card {
  background-color: rgba(248, 249, 252, 0.1);
  border-color: rgba(248, 249, 252, 0.2);
  color: var(--text-light);
}

.card:hover {
  border-color: var(--warm-dusk);
  box-shadow: 0 8px 24px rgba(198, 156, 109, 0.15);
  transform: translateY(-4px);
}

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

.content-section:nth-child(even) .card h3 {
  color: var(--warm-dusk);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--pale-moonlight) 0%, var(--warm-dusk) 100%);
  color: var(--midnight-navy);
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.5s ease;
}

.card-link:hover {
  transform: scale(1.05);
  color: white;
}

.accordion-button {
  background-color: transparent;
  color: var(--text-dark);
  font-weight: bold;
  font-size: 18px;
  border: none;
  border-bottom: 2px solid rgba(26, 42, 68, 0.1);
  padding: 1.5rem 0;
  text-align: left;
}

.accordion-button:hover {
  color: var(--warm-dusk);
}

.accordion-button.collapsed {
  color: var(--text-dark);
}

.accordion-body {
  border: none;
  padding: 1.5rem 0;
  background-color: transparent;
  font-size: 18px;
  line-height: 1.76;
}

.content-section:nth-child(even) .accordion-button {
  color: var(--text-light);
  border-bottom-color: rgba(248, 249, 252, 0.2);
}

.content-section:nth-child(even) .accordion-body {
  color: var(--text-light);
}

.footer {
  background-color: var(--midnight-navy);
  color: var(--text-light);
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-family: 'Garamond', 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 1rem;
  color: var(--warm-dusk);
}

.footer-link {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-link:hover {
  color: var(--warm-dusk);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 249, 252, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--soft-periwinkle);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--midnight-navy);
  color: var(--text-light);
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

.cookie-accept:hover {
  background-color: var(--soft-periwinkle);
}

.cookie-reject {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-reject:hover {
  background-color: rgba(248, 249, 252, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--warm-dusk);
}

.cookie-learn:hover {
  background-color: var(--warm-dusk);
  color: var(--midnight-navy);
}

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

.form-control {
  border: 2px solid rgba(26, 42, 68, 0.2);
  border-radius: 4px;
  padding: 12px;
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--warm-dusk);
  box-shadow: 0 0 8px rgba(198, 156, 109, 0.2);
}

.btn-primary {
  background-color: var(--warm-dusk);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--soft-periwinkle);
}

.disclaimer {
  background-color: rgba(198, 156, 109, 0.1);
  border-left: 4px solid var(--warm-dusk);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
}

.content-section:nth-child(even) .disclaimer {
  background-color: rgba(198, 156, 109, 0.2);
  color: var(--text-light);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content h1 {
  margin-bottom: 2rem;
}

.thank-you-content p {
  font-size: 20px;
  margin-bottom: 2rem;
}

.home-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--midnight-navy) 0%, var(--soft-periwinkle) 100%);
  color: var(--text-light);
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.home-button:hover {
  transform: scale(1.05);
}

.blog-hero {
  background: linear-gradient(135deg, var(--midnight-navy) 0%, #2d3f57 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.blog-hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.blog-hero h1 {
  color: var(--pale-moonlight);
  font-size: 76px;
}

.blog-article {
  padding: 60px 0;
}

.blog-article img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 8px;
}

.blog-article h2 {
  color: var(--midnight-navy);
}

.blog-article p {
  font-size: 19px;
  line-height: 1.76;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@supports not (background-attachment: fixed) {
  .parallax {
    background-attachment: scroll;
  }
}

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

.info-box {
  background-color: rgba(198, 156, 109, 0.05);
  border: 1px solid var(--warm-dusk);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

@media (max-width: 576px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero-section h1 {
    font-size: 48px;
  }
  
  .container-main {
    padding: 0 20px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
