/* style/download-center-app-faq.css */

/* Base styles for the page content */
.page-download-center-app-faq {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  line-height: 1.6;
  background-color: #0A2342; /* Primary dark blue background */
}

.page-download-center-app-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-download-center-app-faq__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #E6B325; /* Accent border */
}

.page-download-center-app-faq__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(230, 179, 37, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-download-center-app-faq__rotate 20s linear infinite;
}

@keyframes page-download-center-app-faq__rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-download-center-app-faq__hero-title {
  font-size: 3.5em;
  color: #E6B325; /* Accent gold for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-download-center-app-faq__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-download-center-app-faq__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-download-center-app-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
}

.page-download-center-app-faq__button--primary {
  background-color: #E6B325; /* Accent gold */
  color: #0A2342; /* Dark blue text for contrast */
}

.page-download-center-app-faq__button--primary:hover {
  background-color: #FFC107; /* Slightly brighter gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-download-center-app-faq__button--secondary {
  background-color: #0A2342; /* Primary dark blue */
  color: #E6B325; /* Accent gold text for contrast */
  border: 2px solid #E6B325;
}

.page-download-center-app-faq__button--secondary:hover {
  background-color: #1a3a60; /* Slightly lighter dark blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-download-center-app-faq__faq-section {
  padding: 60px 0;
  background-color: #0A2342; /* Primary dark blue background */
}

.page-download-center-app-faq__section-title {
  font-size: 2.5em;
  color: #E6B325; /* Accent gold */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-faq__section-description {
  font-size: 1.1em;
  color: #CCCCCC; /* Lighter grey */
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-app-faq__faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-download-center-app-faq__faq-item {
  background-color: #1a3a60; /* Darker blue for FAQ items */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2a4e7a;
}

.page-download-center-app-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-download-center-app-faq__faq-question {
  font-size: 1.4em;
  color: #E6B325; /* Accent gold for questions */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-right: 30px;
}

.page-download-center-app-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #E6B325;
  transition: transform 0.3s ease;
}

.page-download-center-app-faq__faq-question.active::after {
  content: '-';
  transform: rotate(0deg); /* No rotation for minus, just change content */
}

.page-download-center-app-faq__faq-answer {
  font-size: 1em;
  color: #DDDDDD; /* Light grey for answers */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-download-center-app-faq__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 15px 10px;
}

.page-download-center-app-faq__faq-answer p {
  margin-bottom: 10px;
}

.page-download-center-app-faq__faq-answer ul,
.page-download-center-app-faq__faq-answer ol {
  margin: 15px 0;
  padding-left: 25px;
}

.page-download-center-app-faq__faq-answer li {
  margin-bottom: 8px;
  color: #DDDDDD;
}

.page-download-center-app-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-faq__image--inline {
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-app-faq__button--inline {
  margin-top: 15px;
}

.page-download-center-app-faq__conclusion {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid #2a4e7a;
  margin-top: 50px;
}

.page-download-center-app-faq__conclusion p {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-download-center-app-faq__hero-title {
    font-size: 3em;
  }
  .page-download-center-app-faq__hero-subtitle {
    font-size: 1.2em;
  }
  .page-download-center-app-faq__section-title {
    font-size: 2em;
  }
  .page-download-center-app-faq__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-faq__hero {
    padding: 80px 0;
  }
  .page-download-center-app-faq__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-app-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-app-faq__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-app-faq__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-app-faq__faq-section {
    padding: 40px 0;
  }
  .page-download-center-app-faq__section-title {
    font-size: 1.8em;
  }
  .page-download-center-app-faq__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-download-center-app-faq__faq-item {
    padding: 25px;
  }
  .page-download-center-app-faq__faq-question {
    font-size: 1.2em;
  }
  .page-download-center-app-faq__faq-answer {
    font-size: 0.95em;
  }
  .page-download-center-app-faq__conclusion p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-faq__hero {
    padding: 60px 0;
  }
  .page-download-center-app-faq__hero-title {
    font-size: 2em;
  }
  .page-download-center-app-faq__hero-subtitle {
    font-size: 0.9em;
  }
  .page-download-center-app-faq__faq-section {
    padding: 30px 0;
  }
  .page-download-center-app-faq__faq-question {
    font-size: 1.1em;
  }
}