/* style/resources-latest-features-updates.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --border-color: #e0e0e0;
}

.page-resources-latest-features-updates {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

.page-resources-latest-features-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-features-updates__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-latest-features-updates__section:nth-of-type(even) {
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
}

.page-resources-latest-features-updates__section-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-resources-latest-features-updates__subsection-title {
  font-size: 2em;
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources-latest-features-updates__text-block {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-resources-latest-features-updates__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-latest-features-updates__text-block a:hover {
  text-decoration: underline;
}

.page-resources-latest-features-updates__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-latest-features-updates__cta-button:hover {
  background: #FFEC8B;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-latest-features-updates__secondary-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.page-resources-latest-features-updates__secondary-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.page-resources-latest-features-updates__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
  overflow: hidden;
}

.page-resources-latest-features-updates__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-latest-features-updates__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}

.page-resources-latest-features-updates__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-resources-latest-features-updates__hero-title {
  font-size: 4.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-resources-latest-features-updates__hero-description {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Styling */
.page-resources-latest-features-updates__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-features-updates__image-content {
  width: 80%;
  height: auto;
  max-width: 700px;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Feature List */
.page-resources-latest-features-updates__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-resources-latest-features-updates__feature-list li {
  background-color: #2a2a2a;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: #E0E0E0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-resources-latest-features-updates__feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-latest-features-updates__feature-list li strong {
  color: var(--primary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

/* Button Group */
.page-resources-latest-features-updates__button-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* FAQ Section */
.page-resources-latest-features-updates__faq {
  background-color: var(--background-dark);
}

.page-resources-latest-features-updates__faq-item {
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.page-resources-latest-features-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2a2a2a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-latest-features-updates__faq-question:hover {
  background: #3a3a3a;
}

.page-resources-latest-features-updates__faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-light);
  font-weight: 600;
  text-align: left;
  flex-grow: 1;
}

.page-resources-latest-features-updates__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-resources-latest-features-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1a1a1a;
  color: #CCCCCC;
  text-align: left;
}

.page-resources-latest-features-updates__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-resources-latest-features-updates__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-latest-features-updates__faq-answer a:hover {
  text-decoration: underline;
}

.page-resources-latest-features-updates__faq-item.active .page-resources-latest-features-updates__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

.page-resources-latest-features-updates__faq-item.active .page-resources-latest-features-updates__faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-features-updates__hero-title {
    font-size: 3.5em;
  }

  .page-resources-latest-features-updates__hero-description {
    font-size: 1.3em;
  }

  .page-resources-latest-features-updates__section-title {
    font-size: 2.5em;
  }

  .page-resources-latest-features-updates__subsection-title {
    font-size: 1.8em;
  }

  .page-resources-latest-features-updates__cta-button,
  .page-resources-latest-features-updates__secondary-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-features-updates__hero-section {
    padding: 60px 15px;
  }

  .page-resources-latest-features-updates__hero-title {
    font-size: 2.8em;
  }

  .page-resources-latest-features-updates__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-resources-latest-features-updates__section {
    padding: 40px 0;
  }

  .page-resources-latest-features-updates__section-title {
    font-size: 2em;
  }

  .page-resources-latest-features-updates__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-latest-features-updates__text-block {
    font-size: 1em;
  }

  .page-resources-latest-features-updates__feature-list {
    margin: 20px auto;
  }

  .page-resources-latest-features-updates__feature-list li {
    padding: 20px;
  }

  .page-resources-latest-features-updates__feature-list li strong {
    font-size: 1.1em;
  }

  .page-resources-latest-features-updates__cta-button,
  .page-resources-latest-features-updates__secondary-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
  }

  .page-resources-latest-features-updates__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-features-updates__faq-question {
    padding: 15px 20px;
  }

  .page-resources-latest-features-updates__faq-question h3 {
    font-size: 1.1em;
  }

  .page-resources-latest-features-updates__faq-toggle {
    font-size: 1.8em;
  }

  .page-resources-latest-features-updates__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-features-updates__hero-title {
    font-size: 2em;
  }

  .page-resources-latest-features-updates__hero-description {
    font-size: 0.9em;
  }

  .page-resources-latest-features-updates__section-title {
    font-size: 1.8em;
  }

  .page-resources-latest-features-updates__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-latest-features-updates__cta-button,
  .page-resources-latest-features-updates__secondary-button {
    font-size: 1em;
    padding: 10px 25px;
  }

  .page-resources-latest-features-updates__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-latest-features-updates__faq-toggle {
    font-size: 1.5em;
  }
}