
    /* CSS for 69 blog page */
.page-69-blog {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small padding, assuming body handles header offset */
}

/* Container for content */
.page-69-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-69-blog__hero-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #2c003e 0%, #0a0a2a 100%); /* Dark gradient */
    margin-bottom: 40px;
}

.page-69-blog__hero-title {
    font-size: 2.8em;
    color: #ffcc00; /* Gold/yellow accent */
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-69-blog__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-69-blog__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-69-blog__primary-button,
.page-69-blog__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-69-blog__primary-button {
    background-color: #ffcc00; /* Gold/yellow accent */
    color: #1a1a2e; /* Dark text */
}

.page-69-blog__primary-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-69-blog__secondary-button {
    background-color: transparent;
    color: #ffcc00; /* Gold/yellow accent */
    border: 2px solid #ffcc00;
}

.page-69-blog__secondary-button:hover {
    background-color: rgba(255, 204, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
}

/* Articles Section */
.page-69-blog__articles-section {
    padding: 40px 0;
    background-color: #0f0f1d; /* Slightly lighter dark background */
}

.page-69-blog__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-69-blog__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px;
}

.page-69-blog__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-69-blog__article-card {
    background-color: #2a2a4a; /* Card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-69-blog__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-69-blog__article-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
    box-sizing: border-box;
}

.page-69-blog__article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
}

.page-69-blog__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-69-blog__article-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-69-blog__article-meta {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 15px;
}

.page-69-blog__article-excerpt {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-69-blog__read-more-button {
    background-color: #4a4a8a; /* Darker accent for button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start; /* Align button to start */
}

.page-69-blog__read-more-button:hover {
    background-color: #5a5ab0;
}

/* FAQ Section */
.page-69-blog__faq-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-69-blog__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-69-blog__faq-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #e0e0e0;
}

.page-69-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #3a3a6a; /* Question background */
    transition: background-color 0.3s ease;
}

.page-69-blog__faq-question:hover {
    background-color: #4a4a8a;
}

.page-69-blog__faq-question-text {
    font-size: 1.3em;
    margin: 0;
    color: #ffcc00;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-69-blog__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffcc00;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-69-blog__faq-item.active .page-69-blog__faq-toggle {
    transform: rotate(45deg); /* Rotate + to form an X or just change to - */
    content: '−'; /* This won't work directly, handled by JS */
}

.page-69-blog__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

.page-69-blog__faq-item.active .page-69-blog__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to cover content */
    padding: 20px 25px !important; /* Active padding */
    opacity: 1;
}

.page-69-blog__faq-answer p {
    margin: 0;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-69-blog__hero-title {
        font-size: 2em;
    }

    .page-69-blog__hero-description {
        font-size: 1em;
    }

    .page-69-blog__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-69-blog__primary-button,
    .page-69-blog__secondary-button {
        width: 100%;
        max-width: 280px; /* Limit button width on mobile */
        margin: 0 auto;
        padding: 12px 20px;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-69-blog__section-title {
        font-size: 1.8em;
    }

    .page-69-blog__article-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-69-blog__article-image-wrapper {
        height: 180px;
    }

    .page-69-blog__article-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .page-69-blog__article-excerpt {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-69-blog__faq-question {
        padding: 15px 20px;
    }

    .page-69-blog__faq-question-text {
        font-size: 1.1em;
    }

    .page-69-blog__faq-toggle {
        font-size: 1.5em;
    }

    .page-69-blog__faq-answer {
        padding: 0 20px;
    }

    .page-69-blog__faq-item.active .page-69-blog__faq-answer {
        padding: 15px 20px !important;
    }
    
    /* General list item responsive rules for any potential lists */
    .page-69-blog ul,
    .page-69-blog ol,
    .page-69-blog__article-grid { /* Assuming this acts like a list container */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-69-blog ul li,
    .page-69-blog ol li,
    .page-69-blog__article-card { /* Assuming these are list items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Ensure images are always responsive */
.page-69-blog img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* Specific image wrapper for article cards to ensure consistency */
.page-69-blog__article-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure contrast for strong tag */
.page-69-blog strong {
    color: #ffcc00; /* Ensure strong text is highlighted and has good contrast */
}
  