
    /* CSS Styles for page-0k9 */
    :root {
        --page-0k9-primary: #FFD700; /* Gold */
        --page-0k9-secondary: #00BFFF; /* Deep Sky Blue */
        --page-0k9-dark: #1a1a2e; /* Dark Blue */
        --page-0k9-light: #e0e0e0;
        --page-0k9-text: #ffffff;
        --page-0k9-accent: #FF4500; /* Orange Red */
    }

    .page-0k9 {
        font-family: 'Arial', sans-serif;
        color: var(--page-0k9-text);
        background-color: var(--page-0k9-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-0k9__hero-section {
        position: relative;
        width: 100%;
        min-height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 80px 20px; /* Decorative padding-top */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-0k9__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        filter: brightness(0.6); /* Dim the background image slightly for text readability */
    }

    .page-0k9__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-0k9__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-0k9-primary);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .page-0k9__hero-subtitle {
        font-size: 1.3em;
        color: var(--page-0k9-light);
        margin-bottom: 30px;
    }

    .page-0k9__cta-button {
        display: inline-block;
        background-color: var(--page-0k9-accent);
        color: var(--page-0k9-text);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-0k9__cta-button:hover {
        background-color: #e63900; /* Darker orange */
        transform: translateY(-3px);
    }

    .page-0k9__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-0k9__floating-button {
        background-color: var(--page-0k9-primary);
        color: var(--page-0k9-dark);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .page-0k9__floating-button:hover {
        background-color: #ccb000; /* Darker gold */
        transform: translateY(-3px);
    }

    .page-0k9__section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-0k9__section-title {
        font-size: 2.2em;
        color: var(--page-0k9-primary);
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-0k9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-0k9__card {
        background-color: #2c2c4d; /* Slightly lighter dark blue */
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .page-0k9__card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }

    .page-0k9__card-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1f1f3a;
    }

    .page-0k9__card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

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

    .page-0k9__card-title {
        font-size: 1.4em;
        color: var(--page-0k9-primary);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .page-0k9__card-description {
        font-size: 0.95em;
        color: var(--page-0k9-light);
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-0k9__card-button {
        display: inline-block;
        background-color: var(--page-0k9-secondary);
        color: var(--page-0k9-dark);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        align-self: flex-start;
    }

    .page-0k9__card-button:hover {
        background-color: #0099e6; /* Darker blue */
    }

    .page-0k9__text-content {
        max-width: 800px;
        margin: 0 auto 40px auto;
        text-align: left;
        color: var(--page-0k9-light);
    }

    .page-0k9__text-content h2 {
        font-size: 1.8em;
        color: var(--page-0k9-primary);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-0k9__text-content p {
        margin-bottom: 15px;
    }

    .page-0k9__text-content ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .page-0k9__text-content ul li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        box-sizing: border-box;
        word-wrap: break-word; /* Ensure text wraps */
    }

    .page-0k9__text-content ul li::before {
        content: '✓';
        color: var(--page-0k9-accent);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-0k9__faq-section {
        padding: 60px 20px;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-0k9__faq-list {
        margin-top: 40px;
        text-align: left;
    }

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

    .page-0k9__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a5e;
        color: var(--page-0k9-primary);
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-0k9__faq-question:hover {
        background-color: #4a4a7a;
    }

    .page-0k9__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click */
        color: var(--page-0k9-primary);
    }

    .page-0k9__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-0k9__faq-item.active .page-0k9__faq-toggle {
        transform: rotate(45deg);
    }

    .page-0k9__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--page-0k9-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-0k9__faq-item.active .page-0k9__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-0k9__faq-answer p {
        margin: 0 0 10px 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-0k9__hero-title {
            font-size: 2em;
        }

        .page-0k9__hero-subtitle {
            font-size: 1em;
        }

        .page-0k9__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-0k9__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            gap: 10px;
            justify-content: space-around;
        }

        .page-0k9__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.9em;
            max-width: 150px;
        }

        .page-0k9__section {
            padding: 40px 15px;
        }

        .page-0k9__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-0k9__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-0k9__card-title {
            font-size: 1.2em;
        }

        .page-0k9__card-description {
            font-size: 0.9em;
        }

        .page-0k9__text-content {
            padding: 0 15px;
        }
        .page-0k9__text-content ul {
            padding-left: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-0k9__text-content ul li {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 25px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-0k9__faq-section {
            padding: 40px 15px;
        }

        .page-0k9__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }

        .page-0k9__faq-toggle {
            font-size: 1.5em;
        }

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

        .page-0k9__faq-item.active .page-0k9__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-0k9__hero-title {
            font-size: 1.7em;
        }
        .page-0k9__hero-subtitle {
            font-size: 0.9em;
        }
        .page-0k9__floating-buttons {
            bottom: 10px;
            left: 10px;
            right: 10px;
            gap: 8px;
        }
        .page-0k9__floating-button {
            padding: 8px 10px;
            font-size: 0.85em;
        }
    }
  