/* style/resources-what-is-goo88d.css */
.page-resources-what-is-goo88d {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --accent-color: #CC0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #002244;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-resources-what-is-goo88d__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-what-is-goo88d__section {
  padding: 60px 0;
}

.page-resources-what-is-goo88d__section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

.page-resources-what-is-goo88d__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-what-is-goo88d__section-description {
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
  font-size: 1.1em;
  color: var(--text-dark);
}

/* Hero Section */
.page-resources-what-is-goo88d__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-what-is-goo88d__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-what-is-goo88d__hero-subtitle {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-resources-what-is-goo88d__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-resources-what-is-goo88d__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: 2px solid transparent; /* Default for primary */
}

.page-resources-what-is-goo88d__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.page-resources-what-is-goo88d__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-what-is-goo88d__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-resources-what-is-goo88d__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-resources-what-is-goo88d__btn--small {
  padding: 8px 20px;
  font-size: 0.95em;
}

.page-resources-what-is-goo88d__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* About Section */
.page-resources-what-is-goo88d__about .page-resources-what-is-goo88d__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-resources-what-is-goo88d__about .page-resources-what-is-goo88d__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-resources-what-is-goo88d__about .page-resources-what-is-goo88d__image-wrapper {
    order: 2;
  }
  .page-resources-what-is-goo88d__about .page-resources-what-is-goo88d__text-content {
    order: 1;
  }
}

.page-resources-what-is-goo88d__text-content h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-what-is-goo88d__text-content p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.page-resources-what-is-goo88d__list {
  list-style: none;
  padding-left: 0;
}

.page-resources-what-is-goo88d__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.page-resources-what-is-goo88d__list li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-what-is-goo88d__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-resources-what-is-goo88d__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-what-is-goo88d__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-what-is-goo88d__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-what-is-goo88d__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-what-is-goo88d__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-what-is-goo88d__feature-item p {
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Start Section */
.page-resources-what-is-goo88d__how-to-start {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-what-is-goo88d__how-to-start .page-resources-what-is-goo88d__section-title {
  color: var(--secondary-color);
}

.page-resources-what-is-goo88d__how-to-start .page-resources-what-is-goo88d__section-description {
  color: var(--text-light);
}

.page-resources-what-is-goo88d__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-what-is-goo88d__step-item {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-what-is-goo88d__step-number {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  border: 3px solid var(--text-light);
}

.page-resources-what-is-goo88d__step-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-what-is-goo88d__step-item p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Safety Section */
.page-resources-what-is-goo88d__safety .page-resources-what-is-goo88d__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-resources-what-is-goo88d__safety .page-resources-what-is-goo88d__content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-resources-what-is-goo88d__safety .page-resources-what-is-goo88d__text-content p {
  margin-bottom: 15px;
}

.page-resources-what-is-goo88d__safety .page-resources-what-is-goo88d__btn {
  margin-top: 20px;
}

/* FAQ Section */
.page-resources-what-is-goo88d__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-what-is-goo88d__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-resources-what-is-goo88d__faq-question {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-what-is-goo88d__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-resources-what-is-goo88d__faq-item.active .page-resources-what-is-goo88d__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-what-is-goo88d__faq-answer {
  color: var(--text-dark);
  font-size: 1em;
  margin-top: 15px;
  display: none; /* Controlled by JS */
}

.page-resources-what-is-goo88d__faq-item.active .page-resources-what-is-goo88d__faq-answer {
  display: block;
}

.page-resources-what-is-goo88d__faq-item .page-resources-what-is-goo88d__btn {
  margin-top: 15px;
  display: inline-block;
}

/* CTA Section */
.page-resources-what-is-goo88d__cta-section {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-resources-what-is-goo88d__cta-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-resources-what-is-goo88d__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-resources-what-is-goo88d__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.page-resources-what-is-goo88d__footer {
  background-color: var(--bg-dark);
  color: #a0a0a0;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-what-is-goo88d__hero-title {
    font-size: 2.8em;
  }
  .page-resources-what-is-goo88d__section-title {
    font-size: 2em;
  }
  .page-resources-what-is-goo88d__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-what-is-goo88d__hero-section {
    padding: 80px 0;
  }
  .page-resources-what-is-goo88d__hero-title {
    font-size: 2.2em;
  }
  .page-resources-what-is-goo88d__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-what-is-goo88d__hero-actions, .page-resources-what-is-goo88d__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-what-is-goo88d__btn--large {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-what-is-goo88d__section {
    padding: 40px 0;
  }
  .page-resources-what-is-goo88d__section-title {
    font-size: 1.8em;
  }
  .page-resources-what-is-goo88d__text-content h3 {
    font-size: 1.5em;
  }
  .page-resources-what-is-goo88d__feature-title {
    font-size: 1.3em;
  }
  .page-resources-what-is-goo88d__step-title {
    font-size: 1.4em;
  }
  .page-resources-what-is-goo88d__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-what-is-goo88d__hero-title {
    font-size: 1.8em;
  }
  .page-resources-what-is-goo88d__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-what-is-goo88d__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-resources-what-is-goo88d__section-title {
    font-size: 1.5em;
  }
  .page-resources-what-is-goo88d__cta-title {
    font-size: 1.8em;
  }
  .page-resources-what-is-goo88d__btn--large {
    width: 90%;
  }
}