/* About Section Styles */
.about-images-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
}
.about-section {
  padding: 20px;
}
.about-section-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-images-container {
    flex-direction: row;
    gap: 1rem;
  }

  .about-section-image {
    flex: 1;
    max-width: 40%;
  }
}

/* Advantage Section Styles */
.advantage-chart-image {
  width: 50%;
  max-width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding-bottom: 7rem;
}

@media (min-width: 768px) {
  .advantage-chart-image {
    max-width: 500px;
  }
}

@media (min-width: 1200px) {
  .advantage-chart-image {
    max-width: 600px;
  }
}

/* Advice Images Section Styles */
.advice-images-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
}

.advice-image {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: fill;
}

@media (min-width: 768px) {
  .advice-images-container {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .advice-image {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}

@media (min-width: 1200px) {
  .advice-image {
    flex: 1 1 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
  }
}

/* Checklist Alignment Styles */
.checklist-wrapper.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.checklist-wrapper.center .checklist {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-wrapper.center .checklist li {
  text-align: left;
}

/* Why LunaSync Images Styles */
.why-lunasync-images-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 0;
}

.why-lunasync-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.why-lunasync-image {
  max-height: 300px;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .why-lunasync-row {
    flex-direction: row;
    gap: 1.5rem;
  }

  .why-lunasync-image {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .why-lunasync-image {
    max-height: 400px;
  }
}

/* Ask Luna Section Styles */
#ask-luna {
  background-color: #f8f5ff;
  padding: 35px;
}

#ask-luna .subtitle {
  color: #6a0dad;
}

.ask-luna-thumb-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.luna-question-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(106, 13, 173, 0.15);
}

.luna-response-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(106, 13, 173, 0.12);
}

/* RESPONSIVE STYLES */

@media (max-width: 768px) {
  .luna-question-image,
  .luna-response-image {
    max-width: 100%;
  }

  #ask-luna {
    padding: 20px;
  }
}

.stroke-purple-500 {
  stroke: oklch(62.7% 0.265 303.9);
}

.fill-purple-500 {
  fill: oklch(62.7% 0.265 303.9);
}

/* Features Grid Styles */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(106, 13, 173, 0.15);
  background-color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(106, 13, 173, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}

.feature-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

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

  .feature-icon {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
  }

  .feature-item p {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
  }

  .feature-item p {
    font-size: 1.125rem;
  }
}

/* Privacy Container Styles */
.privacy-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.data-privacy-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(106, 13, 173, 0.15);
}

.data-privacy-text {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.second-hero-image {
  display: block;
  max-height: 300px;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .data-privacy-image {
    max-width: 600px;
  }

  .data-privacy-text {
    font-size: 1rem;
  }
  .second-hero-image {
    display: none;
  }
}

@media (min-width: 1200px) {
  .data-privacy-image {
    max-width: 350px;
  }

  .data-privacy-text {
    font-size: 1.1rem;
  }
}

.premium-section {
  border-radius: 50px;
  background: rgba(116, 68, 253, 0.06);
}
.premium-feature-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  padding-bottom: 2rem;
}
