/* style/privacy-policy.css */

/* Variables for Nustar Black Gold theme */
:root {
  --nustar-primary: #F2C14E;
  --nustar-secondary: #FFD36B;
  --nustar-card-bg: #111111;
  --nustar-background: #0A0A0A;
  --nustar-text-main: #FFF6D6;
  --nustar-border: #3A2A12;
  --nustar-glow: #FFD36B;
  --nustar-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-privacy-policy {
  font-family: Arial, sans-serif;
  color: var(--nustar-text-main); /* Light text for dark body background */
  background-color: var(--nustar-background); /* Body background is #0A0A0A */
  line-height: 1.6;
  font-size: 1rem;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--nustar-background);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-content-wrapper {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  color: var(--nustar-primary);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-privacy-policy__hero-description {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--nustar-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--nustar-background);
}

.page-privacy-policy__section-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: var(--nustar-secondary);
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--nustar-border);
  padding-bottom: 15px;
  text-align: left;
}

.page-privacy-policy__sub-title {
  font-size: 1.6rem;
  color: var(--nustar-primary);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  color: var(--nustar-text-main);
  text-align: justify;
}

.page-privacy-policy__paragraph a {
  color: var(--nustar-secondary);
  text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
  color: var(--nustar-primary);
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  color: var(--nustar-text-main);
}

.page-privacy-policy__contact-item a {
  color: var(--nustar-secondary);
  text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
  color: var(--nustar-primary);
  text-decoration: underline;
}

.page-privacy-policy__cta-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--nustar-button-gradient);
  color: #ffffff; /* White text for button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* FAQ Section Styling */
.page-privacy-policy__faq-list {
  margin-top: 30px;
}

.page-privacy-policy__faq-item {
  background-color: var(--nustar-card-bg);
  border: 1px solid var(--nustar-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a; /* Slightly lighter than card bg for question strip */
  color: var(--nustar-text-main);
  font-weight: 600;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: #2a2a2a;
}

.page-privacy-policy__faq-title {
  margin: 0;
  color: var(--nustar-text-main);
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nustar-primary);
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-answer {
  max-height: 0; /* Initial collapsed state */
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--nustar-text-main);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 1000px !important; /* Expanded state, !important to ensure override */
  padding: 20px; /* Adjust padding for expanded state */
  padding-top: 0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-question {
  background-color: #2a2a2a;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  transform: rotate(45deg); /* Plus to Minus effect */
  color: var(--nustar-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content-wrapper {
    max-width: 700px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  }
  .page-privacy-policy__section-title {
    font-size: 1.8rem;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 0.95rem;
  }
  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }
  .page-privacy-policy__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__paragraph {
    font-size: 0.95rem;
  }
  
  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__section-container,
  .page-privacy-policy__hero-content-wrapper,
  .page-privacy-policy__cta-container,
  .page-privacy-policy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile button responsiveness */
  .page-privacy-policy__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .page-privacy-policy__cta-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-privacy-policy__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.2rem;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 15px;
  }
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 30px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9rem;
  }
  .page-privacy-policy__section-title {
    font-size: 1.4rem;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.1rem;
  }
  .page-privacy-policy__btn-primary {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .page-privacy-policy__faq-question {
    font-size: 0.95rem;
    padding: 12px;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.1rem;
  }
}