/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav-buttons a,
.buttons a {
  text-decoration: none;
  color: #ffffff;
  background-color: #FF9933;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: 10px;
  transition: background-color 0.3s;
}

.nav-buttons a:hover,
.buttons a:hover {
  background-color: #e88a2d;
}

.buttons {
  display: flex;
  justify-content: center;
}

/* Main */
main {
  flex: 1;
  margin-top: 80px;
  /* Space for fixed header */
  text-align: center;
}

/* Basic Content Styles */
h1 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #138808;
  margin-top: 20px;
}

#content p {
  margin-bottom: 20px;
  color: #333333;
  font-size: 1em;
  line-height: 1.5;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #FF9933;
  font-size: 1.8em;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #138808;
  font-size: 1.5em;
}

/* Table Styles */
#content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

#content table th,
#content table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
}

/* List Styles */
#content ul {
  list-style: disc;
  margin: 20px auto;
  text-align: left;
  padding-left: 40px;
}

#content ul li {
  margin-bottom: 10px;
  color: #333333;
}

#content ol {
  list-style: decimal;
  margin: 20px auto;
  text-align: left;
  padding-left: 40px;
}

#content ol li {
  margin-bottom: 10px;
  color: #333333;
}

.cta-section-embedded {
  width: 100%;
  background: linear-gradient(90deg, #FF9933, #138808);
  padding: 40px 20px;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.cta-section-embedded.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-logo img {
  height: 60px!important;
}

.cta-button .cta-play-btn {
  font-size: 1.2em;
  padding: 15px 30px;
  background-color: #ffffff;
  color: #138808;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button .cta-play-btn:hover {
  background-color: #f0f0f0;
}

/* Author Section */
.author-section {
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
}

.author-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
}

.author-info h2 {
  margin-bottom: 10px;
  color: #138808;
}

.author-info p {
  color: #333333;
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #FF9933;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 45%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card .rating {
  font-weight: bold;
  color: #138808;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  margin-bottom: 10px;
  color: #FF9933;
}

.testimonial-card p {
  color: #333333;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}

.footer-links a {
  text-decoration: none;
  color: #138808;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #FF9933;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555555;
}

/* Cookie Notification */
.cookie-notification {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 200;
}

.cookie-notification p {
  margin-right: 20px;
  font-size: 0.9em;
}

.cookie-notification a.learn-more {
  color: #FF9933;
  text-decoration: underline;
}

.cookie-notification button.cookie-accept {
  background-color: #FF9933;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-notification button.cookie-accept:hover {
  background-color: #e88a2d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .author-section {
    flex-direction: column;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto 20px auto;
  }

  .testimonial-card {
    max-width: 100%;
  }

  #content ul {
    padding-left: 20px;
  }
}

.text-content {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  text-align: left;
}

h1 {
  text-align: center;
}

/* FAQ Section Styles */
.faq-section {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
}

.faq-section h2 {
  text-align: center;
  color: #138808;
  font-size: 2em;
}

.faq-section p {
  margin-bottom: 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2px solid #FF9933;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #FF9933, #138808);
  color: #ffffff;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.faq-answer p {
  padding: 20px;
  margin: 0;
  color: #333333;
}

/* Active FAQ Item Styles */
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top: 1px solid #FF9933;
}

/* Hover Effects */
.faq-item:hover {
  box-shadow: 0 2px 10px rgba(255, 153, 51, 0.2);
}

.faq-question:hover {
  background: linear-gradient(90deg, #e88a2d, #0f7a06);
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 10px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-answer p {
    padding: 15px;
  }

  #content table {
    overflow-x: auto;
    display: block;
  }
}

#content img {
  max-width: 100%;
  height: auto;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
}