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

.page-index-about-fb88-code {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the main content area */
    background-color: var(--page-bg); /* Page background from custom colors */
    line-height: 1.6;
    font-size: 16px;
}

.page-index-about-fb88-code__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-index-about-fb88-code__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

.page-index-about-fb88-code__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width on larger screens */
    margin-bottom: 30px; /* Space between image and content */
}

.page-index-about-fb88-code__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-index-about-fb88-code__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-index-about-fb88-code__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    color: var(--gold-color); /* Use gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-about-fb88-code__description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-index-about-fb88-code__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-index-about-fb88-code__btn-primary,
.page-index-about-fb88-code__btn-secondary,
.page-index-about-fb88-code__faq-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-index-about-fb88-code__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* White text on dark button */
    border: 2px solid transparent;
}

.page-index-about-fb88-code__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-index-about-fb88-code__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-index-about-fb88-code__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-index-about-fb88-code__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-about-fb88-code__heading {
    font-size: 2.5em;
    color: var(--text-main);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-about-fb88-code__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 2px;
}

.page-index-about-fb88-code__sub-heading {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-about-fb88-code__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-index-about-fb88-code__content-grid:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image and text */
}

.page-index-about-fb88-code__text-block {
    flex: 1;
    color: var(--text-secondary);
}

.page-index-about-fb88-code__text-block p {
    margin-bottom: 15px;
}

.page-index-about-fb88-code__image-wrapper {
    flex: 1;
    min-width: 200px; /* Minimum size for content images */
}

.page-index-about-fb88-code__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

/* Features Grid */
.page-index-about-fb88-code__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-about-fb88-code__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: var(--text-secondary); /* Text color for cards */
    border: 1px solid var(--border-color);
}

.page-index-about-fb88-code__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
}

/* Promotions List */
.page-index-about-fb88-code__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}