:root {
  --color-cream: #fbf8f3;
  --color-beige: #f5efe6;
  --color-peach: #ffe5d9;
  --color-burgundy: #8b2635;
  --color-dark-red: #6b1e2f;
  --color-coral: #e57373;
  --color-orange: #ff6f3c;
  --color-warm-yellow: #ffb84d;
  --color-dark-gray: #2d2d2d;
  --color-medium-gray: #666666;
  --color-light-gray: #f8f8f8;
  --gradient-bg: linear-gradient(135deg, #fbf8f3 0%, #f5efe6 50%, #ffe5d9 100%);
  --gradient-button: linear-gradient(135deg, #ff6f3c 0%, #ffb84d 100%);
  --gradient-accent: linear-gradient(135deg, #8b2635 0%, #e57373 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background: var(--gradient-bg);
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
}

.logo-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--color-dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-burgundy);
}

.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark-gray);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-medium-gray);
}

.hero-image-container {
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-accent);
  top: 10%;
  left: -5%;
}

.bubble-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-button);
  top: 60%;
  right: -3%;
  animation-delay: -2s;
}

.bubble-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffe5d9 0%, #ffb84d 100%);
  bottom: 10%;
  left: 40%;
  animation-delay: -4s;
}

.bubble-4 {
  width: 250px;
  height: 250px;
  background: var(--gradient-accent);
  top: 20%;
  right: 5%;
  animation-delay: -1s;
}

.bubble-5 {
  width: 180px;
  height: 180px;
  background: var(--gradient-button);
  bottom: 15%;
  left: 10%;
  animation-delay: -3s;
}

.bubble-6 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #e57373 0%, #ffb84d 100%);
  top: 50%;
  right: -8%;
  animation-delay: -2.5s;
}

.bubble-7 {
  width: 280px;
  height: 280px;
  background: var(--gradient-accent);
  top: 30%;
  left: -10%;
  animation-delay: -1.5s;
}

.bubble-8 {
  width: 160px;
  height: 160px;
  background: var(--gradient-button);
  bottom: 20%;
  right: 15%;
  animation-delay: -3.5s;
}

.bubble-9 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #8b2635 0%, #ff6f3c 100%);
  top: -10%;
  left: 20%;
  animation-delay: -2s;
}

.bubble-10 {
  width: 190px;
  height: 190px;
  background: var(--gradient-button);
  bottom: -5%;
  right: 25%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.btn-gradient {
  background: var(--gradient-button);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 111, 60, 0.3);
  color: white;
  text-decoration: none;
}

.btn-gradient-large {
  background: var(--gradient-button);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-gradient-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 111, 60, 0.3);
  color: white;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-dark-gray);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--color-dark-gray);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-dark-gray);
  color: white;
  text-decoration: none;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-burgundy);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--color-burgundy);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--color-burgundy);
  color: white;
  text-decoration: none;
}

.content-section {
  padding: 5rem 0;
  position: relative;
}

.alternate-bg {
  background: linear-gradient(135deg, rgba(255, 229, 217, 0.5) 0%, rgba(245, 239, 230, 0.5) 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark-gray);
  text-align: center;
}

.section-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--color-medium-gray);
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-medium-gray);
}

.content-card {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.content-card h3,
.content-card h4 {
  color: var(--color-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.gradient-card {
  background: var(--gradient-accent);
  color: white;
}

.gradient-card h3,
.gradient-card h4 {
  color: white;
}

.image-section {
  padding: 0;
}

.image-col {
  padding: 0;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.content-col {
  display: flex;
  align-items: center;
  padding: 4rem;
  background: white;
}

.content-wrapper {
  max-width: 500px;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.circle-crop {
  border-radius: 50%;
  width: 100%;
  max-width: 400px;
  height: 400px;
}

.rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-button);
  opacity: 0.8;
}

.feature-card h4 {
  color: var(--color-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.05) 0%, rgba(229, 115, 115, 0.05) 100%);
  position: relative;
}

.movement-quote {
  text-align: center;
  padding: 3rem 2rem;
}

.movement-quote p {
  font-size: 1.75rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
}

.movement-quote cite {
  font-size: 1.125rem;
  color: var(--color-burgundy);
  font-style: normal;
  font-weight: 600;
}

.image-grid-section {
  padding: 5rem 0;
}

.image-card {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h5 {
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fbf8f3 0%, #ffe5d9 100%);
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-dark-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--color-burgundy);
  font-size: 1rem;
}

.testimonial-author span {
  display: block;
  color: var(--color-medium-gray);
  font-size: 0.875rem;
}

.faq-section {
  padding: 5rem 0;
  position: relative;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  color: var(--color-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.faq-answer {
  color: var(--color-medium-gray);
  line-height: 1.8;
  margin: 0;
}

.cta-section {
  padding: 6rem 0;
  position: relative;
  background: var(--gradient-accent);
  text-align: center;
}

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

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.page-header {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
}

.principle-card {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-10px);
}

.principle-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.principle-card h4 {
  color: var(--color-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.concept-visual {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.visual-element {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.6;
  animation: pulse 3s ease-in-out infinite;
}

.visual-element:nth-child(2) {
  background: var(--gradient-button);
  animation-delay: -1s;
}

.visual-element:nth-child(3) {
  background: linear-gradient(135deg, #ffe5d9 0%, #e57373 100%);
  animation-delay: -2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.contact-info {
  padding: 2rem 0;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h5 {
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-item p {
  color: var(--color-medium-gray);
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 15px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(139, 38, 53, 0.1);
}

.form-check-input:checked {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
}

.thank-you-card {
  background: white;
  padding: 4rem 3rem;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--gradient-button);
  opacity: 0.8;
}

.thank-you-card h1 {
  font-size: 2.5rem;
  color: var(--color-burgundy);
  margin-bottom: 1rem;
}

.thank-you-card p {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
  margin-bottom: 2rem;
}

.legal-section {
  padding: 3rem 0 5rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: 2rem;
}

.legal-content {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: var(--color-burgundy);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--color-dark-gray);
  font-size: 1.375rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-medium-gray);
}

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

.legal-content ul li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--color-medium-gray);
}

.legal-content a {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-dark-red);
}

.site-footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-heading {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  color: var(--color-medium-gray);
  flex: 1;
}

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

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-col {
    padding: 3rem 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .movement-quote p {
    font-size: 1.375rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .content-card {
    padding: 2rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .legal-content {
    padding: 2rem;
  }

  .floating-bubble {
    display: none;
  }
}
