/* style/blog-sutbong123-code-faq-and-security-guide.css */

/* Variables for consistent colors */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-border-color: #2E7A4E;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

.page-blog-sutbong123-code-faq-and-security-guide {
  font-family: Arial, sans-serif;
  color: var(--page-text-main); /* Main text color for dark body background */
  background-color: var(--page-background); /* Ensure consistent background */
  line-height: 1.6;
}

/* Container for content width */
.page-blog-sutbong123-code-faq-and-security-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-sutbong123-code-faq-and-security-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space between image and content below */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-deep-green); /* A darker green for hero background */
}

.page-blog-sutbong123-code-faq-and-security-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-sutbong123-code-faq-and-security-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-sutbong123-code-faq-and-security-guide__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-sutbong123-code-faq-and-security-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: var(--page-gold-color); /* Use gold for main title for emphasis */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-sutbong123-code-faq-and-security-guide__hero-description {
  font-size: 1.15rem;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

/* Section Styling */
.page-blog-sutbong123-code-faq-and-security-guide__introduction-section,
.page-blog-sutbong123-code-faq-and-security-guide__faq-section,
.page-blog-sutbong123-code-faq-and-security-guide__security-guide-section,
.page-blog-sutbong123-code-faq-and-security-guide__benefits-section,
.page-blog-sutbong123-code-faq-and-security-guide__contact-section,
.page-blog-sutbong123-code-faq-and-security-guide__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-divider-color);
}

.page-blog-sutbong123-code-faq-and-security-guide__introduction-section.page-blog-sutbong123-code-faq-and-security-guide__dark-bg,
.page-blog-sutbong123-code-faq-and-security-guide__security-guide-section.page-blog-sutbong123-code-faq-and-security-guide__dark-bg,
.page-blog-sutbong123-code-faq-and-security-guide__contact-section.page-blog-sutbong123-code-faq-and-security-guide__dark-bg {
  background-color: var(--page-deep-green); /* Darker green background for specific sections */
}

.page-blog-sutbong123-code-faq-and-security-guide__section-title {
  font-size: 2.2rem;
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-sutbong123-code-faq-and-security-guide__text-block {
  font-size: 1.05rem;
  color: var(--page-text-secondary);
  margin-bottom: 20px;
}

/* Call to Action Button */
.page-blog-sutbong123-code-faq-and-security-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure button fits container */
  box-sizing: border-box; /* Include padding in width calculation */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-blog-sutbong123-code-faq-and-security-guide__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-text-main);
  border: 2px solid transparent;
}

.page-blog-sutbong123-code-faq-and-security-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
  box-shadow: 0 0 15px var(--page-glow-color);
}

.page-blog-sutbong123-code-faq-and-security-guide__btn-secondary {
  background-color: transparent;
  color: var(--page-gold-color);
  border: 2px solid var(--page-gold-color);
}

.page-blog-sutbong123-code-faq-and-security-guide__btn-secondary:hover {
  background-color: var(--page-gold-color);
  color: var(--page-background); /* Dark text on gold background */
  box-shadow: 0 0 10px var(--page-gold-color);
}

/* FAQ Section */
.page-blog-sutbong123-code-faq-and-security-guide__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-sutbong123-code-faq-and-security-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}