/* style/newbie-guide-first-deposit.css */
.page-newbie-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
}

.page-newbie-guide-first-deposit .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-first-deposit h1, .page-newbie-guide-first-deposit h2, .page-newbie-guide-first-deposit h3 {
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-newbie-guide-first-deposit h1 {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-newbie-guide-first-deposit h2 {
  font-size: 2.2em;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-newbie-guide-first-deposit h3 {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  color: #e0e0e0;
}

.page-newbie-guide-first-deposit p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.page-newbie-guide-first-deposit ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-newbie-guide-first-deposit ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-newbie-guide-first-deposit a {
  color: #FFD700;
  text-decoration: none;
}

.page-newbie-guide-first-deposit a:hover {
  text-decoration: underline;
}

.page-newbie-guide-first-deposit .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-newbie-guide-first-deposit .btn-primary {
  background-color: #E03B8B; /* Accent color for primary actions */
  color: #FFFFFF;
  border: 2px solid #E03B8B;
}

.page-newbie-guide-first-deposit .btn-primary:hover {
  background-color: #c92f7a;
  border-color: #c92f7a;
  transform: translateY(-2px);
}

.page-newbie-guide-first-deposit .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-newbie-guide-first-deposit .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-newbie-guide-first-deposit .btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-newbie-guide-first-deposit .hero-section {
  background: linear-gradient(135deg, #0A1931, #2a3a5a);
  padding: 100px 0;
  text-align: center;
}

.page-newbie-guide-first-deposit .hero-section h1 {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-newbie-guide-first-deposit .hero-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #f0f0f0;
}

/* General Section Styling */
.page-newbie-guide-first-deposit section {
  padding: 60px 0;
}

.page-newbie-guide-first-deposit section:nth-child(even) {
  background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

/* Content Wrapper for text/image layout */
.page-newbie-guide-first-deposit .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-newbie-guide-first-deposit .content-wrapper .text-content {
  flex: 1;
}

.page-newbie-guide-first-deposit .content-wrapper .image-content {
  flex: 1;
  text-align: center;
}

.page-newbie-guide-first-deposit .content-wrapper .image-content .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Deposit Steps Section */
.page-newbie-guide-first-deposit .deposit-steps-section {
  text-align: center;
}

.page-newbie-guide-first-deposit .deposit-steps-section .step-item {
  background-color: #0A1931;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit .deposit-steps-section .step-item h3 {
  color: #FFD700;
  text-align: left;
}

.page-newbie-guide-first-deposit .deposit-steps-section .step-item img {
  margin-top: 20px;
  border: 1px solid #333;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

/* Bonus Section */
.page-newbie-guide-first-deposit .bonus-section ul {
  list-style: none;
  padding: 0;
}

.page-newbie-guide-first-deposit .bonus-section ul li {
  background-color: #1a2a47;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 5px solid #E03B8B;
  border-radius: 5px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-newbie-guide-first-deposit .faq-section {
  background-color: #0A1931;
}

.page-newbie-guide-first-deposit .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-newbie-guide-first-deposit .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
}

.page-newbie-guide-first-deposit .accordion-header {
  background-color: #1a2a47;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-newbie-guide-first-deposit .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-newbie-guide-first-deposit .accordion-header.active {
  background-color: #2a3a5a;
}

.page-newbie-guide-first-deposit .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-newbie-guide-first-deposit .accordion-content {
  padding: 0 25px;
  background-color: #0A1931;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-newbie-guide-first-deposit .accordion-content.open {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-newbie-guide-first-deposit .accordion-content p {
  color: #e0e0e0;
  margin-bottom: 0;
}

/* CTA Section */
.page-newbie-guide-first-deposit .cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #0A1931, #2a3a5a);
}

.page-newbie-guide-first-deposit .cta-section h2 {
  color: #FFD700;
}

.page-newbie-guide-first-deposit .cta-section p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-newbie-guide-first-deposit .cta-section .btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-newbie-guide-first-deposit h1 {
    font-size: 2.2em;
  }

  .page-newbie-guide-first-deposit h2 {
    font-size: 1.8em;
  }

  .page-newbie-guide-first-deposit h3 {
    font-size: 1.5em;
  }

  .page-newbie-guide-first-deposit .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-newbie-guide-first-deposit .content-wrapper.reverse-order-mobile {
    flex-direction: column-reverse;
  }

  .page-newbie-guide-first-deposit .cta-section .btn {
    display: block;
    margin: 20px auto;
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-newbie-guide-first-deposit .hero-section {
    padding: 60px 0;
  }

  .page-newbie-guide-first-deposit h1 {
    font-size: 1.8em;
  }

  .page-newbie-guide-first-deposit h2 {
    font-size: 1.6em;
  }

  .page-newbie-guide-first-deposit p {
    font-size: 1em;
  }

  .page-newbie-guide-first-deposit .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-newbie-guide-first-deposit .btn-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-newbie-guide-first-deposit .accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-newbie-guide-first-deposit .accordion-content {
    padding: 10px 20px 20px 20px;
  }
}