/* ArbiBotX Sections - Using Existing Theme Colors */

/* New sections alignment and spacing */
.arbibotx-about,
.trading-packages,
.mission-tech,
.rank-rewards {
  padding: 60px 0;
}

/* Package cards styling */
.package-card {
  padding: 30px 20px;
  margin: 15px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

/* Rank cards styling */
.rank-card {
  padding: 25px 15px;
  margin: 10px 0;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.rank-card:hover {
  border-color: #4285f4;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
}

/* Typography alignment */
.arbibotx-about h6,
.trading-packages h6,
.mission-tech h6,
.rank-rewards h6 {
  text-align: center;
  margin-bottom: 10px;
}

.arbibotx-about h2,
.trading-packages h2,
.mission-tech h2,
.rank-rewards h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Button styling to match existing theme */
.package-card .elementor-button {
  background-color: #4285f4;
  border: none;
  border-radius: 2px;
  padding: 12px 25px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.package-card .elementor-button:hover {
  background-color: #3367d6;
}

/* FAQ Section Styling */
.faq-section {
  background: #ffffff;
  padding: 60px 0;
}

.faq-section h6 {
  text-align: center;
  margin-bottom: 10px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  padding: 20px 15px;
  margin: 10px 0;
  border-left: 4px solid #4285f4;
  background: #f8f9fa;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.1);
}

.faq-item h4 {
  color: #4285f4;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Terms Section Styling */
.terms-section {
  padding: 60px 0;
}

.terms-section h6 {
  text-align: center;
  margin-bottom: 10px;
}

.terms-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.terms-section h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 20px;
}

.terms-section ul {
  list-style: none;
  padding: 0;
}

.terms-section li {
  color: #e0e0e0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 20px;
}

.terms-section li:before {
  content: "✓";
  color: #4285f4;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .arbibotx-about,
  .trading-packages,
  .mission-tech,
  .rank-rewards,
  .faq-section,
  .terms-section {
    padding: 40px 0;
  }
  
  .package-card,
  .rank-card,
  .faq-item {
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  .package-card {
    padding: 20px 15px;
  }
  
  .rank-card {
    padding: 20px 10px;
  }
  
  .faq-item {
    padding: 15px 10px;
  }
}