/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/privacy-policy/privacy-policy.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************/
/* Hero Section */
.privacy-hero-section {
  background: #ab8736;
  padding: 80px 0 80px 0;
  position: relative;
  min-height: 300px;
  margin-top: -100px;
  padding-top: 180px;
  z-index: 0;
}

.privacy-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-hero-subtitle {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  font-size: 1.2rem;
  color: #fafafa;
  max-width: 800px;
  margin: 0 auto;
}

/* CTA Buttons Container */
.privacy-cta-buttons {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 3rem 0;
}

.privacy-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #ab8736;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-cta-btn.primary {
  background-color: #ab8736;
  color: #fff;
  box-shadow: 0 4px 6px rgba(171, 135, 54, 0.2);
}

.privacy-cta-btn.primary:hover {
  background-color: transparent;
  color: #ab8736;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(171, 135, 54, 0.3);
}

.privacy-cta-btn.secondary {
  background-color: transparent;
  color: #ab8736;
  box-shadow: 0 4px 6px rgba(171, 135, 54, 0.1);
}

.privacy-cta-btn.secondary:hover {
  background-color: #ab8736;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(171, 135, 54, 0.3);
}

/* CTA Section */
.privacy-cta-section {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #fef8d6;
  border-radius: 8px;
}

/* Bullet Points */
.privacy-bullet-list li {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  align-items: flex-start;
}

.privacy-bullet-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ab8736;
  margin-right: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.privacy-bullet-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ab8736;
  display: block;
}

/* FAQ Accordion */
.privacy-faq-accordion {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  margin-top: 30px;
}

.privacy-faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}

.privacy-faq-button {
  width: 100%;
  padding: 20px 0;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  gap: 20px;
}

.privacy-faq-button:hover {
  opacity: 0.7;
}

.privacy-faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  flex: 1 1;
}

.privacy-faq-icon {
  font-size: 1.8rem;
  color: #ab8736;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.privacy-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.privacy-faq-content.open {
  max-height: 500px;
}

.privacy-faq-answer-wrapper {
  padding-bottom: 20px;
  padding-right: 44px;
}

.privacy-faq-answer {
  margin: 0;
  color: #666;
  line-height: 1.7;
}
.privacy-policy-container .com-para {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
}

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

