
    .page-99kk-con {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from floating buttons */
}

/* Ensure images are responsive */
.page-99kk-con img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Soften edges */
}

/* Section styling */
.page-99kk-con__hero-section,
.page-99kk-con__features-section,
.page-99kk-con__promo-section,
.page-99kk-con__why-choose-section,
.page-99kk-con__faq-section,
.page-99kk-con__cta-section {
    padding: 40px 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Decorative padding-top for hero section, as body has padding-top already */
.page-99kk-con__hero-section {
    padding-top: 10px; /* Small decorative top padding */
    background: linear-gradient(135deg, #2c0a52, #1a1a1a); /* Gradient background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Make hero section tall */
}

.page-99kk-con__hero-content {
    max-width: 900px;
    margin-bottom: 30px;
}

.page-99kk-con__main-title {
    font-size: 2.8em;
    color: #ffcc00; /* Gold/yellow accent */
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.page-99kk-con__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
}

.page-99kk-con__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-99kk-con__hero-image-wrapper {
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
}

.page-99kk-con__hero-image {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensure the image fits without cropping */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-99kk-con__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-99kk-con__button--primary {
    background-color: #ffcc00; /* Gold/yellow */
    color: #1a1a1a; /* Dark text */
}

.page-99kk-con__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-99kk-con__button--secondary {
    background-color: #333; /* Dark grey */
    color: #ffcc00; /* Gold/yellow */
    border: 2px solid #ffcc00;
}

.page-99kk-con__button--secondary:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.page-99kk-con__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-99kk-con__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 60px;
}

/* Section titles and descriptions */
.page-99kk-con__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

.page-99kk-con__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* Features Grid */
.page-99kk-con__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-99kk-con__feature-item {
    background-color: #2c2c2c;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-99kk-con__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-99kk-con__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-99kk-con__feature-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-99kk-con__feature-text {
    font-size: 1em;
    color: #ccc;
}

/* Promo Section */
.page-99kk-con__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-99kk-con__promo-card {
    background-color: #2c2c2c;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-99kk-con__promo-card:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-99kk-con__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-99kk-con__promo-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-99kk-con__promo-description {
    font-size: 1em;
    color: #ccc;
    flex-grow: 1; /* Make description take available space */
    margin-bottom: 20px;
}

.page-99kk-con__promo-action {
    margin-top: auto; /* Push button to bottom */
}

/* Why Choose Section */
.page-99kk-con__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-99kk-con__why-choose-item {
    background-color: #2c2c2c;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-99kk-con__why-choose-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-99kk-con__why-choose-icon {
    width: 200px; /* Min 200x200 as per requirement */
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(1.2); /* Allowed for icons to make them pop, not change color */
}

.page-99kk-con__why-choose-title {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-99kk-con__why-choose-text {
    font-size: 1em;
    color: #ccc;
}

/* FAQ Section */
.page-99kk-con__faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-99kk-con__faq-item {
    background-color: #2c2c2c;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-99kk-con__faq-item:hover {
    background-color: #3a3a3a;
}

.page-99kk-con__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    font-size: 1.2em;
    color: #ffcc00;
    background-color: #333;
    border-bottom: 1px solid #444;
}

.page-99kk-con__faq-question:hover {
    background-color: #444;
}

.page-99kk-con__faq-title {
    margin: 0;
    font-size: 1em; /* Adjust to fit parent font-size */
    color: inherit; /* Inherit color from parent */
    pointer-events: none; /* Crucial for click event on parent */
    text-align: left; /* Ensure text alignment */
    flex-grow: 1;
}

.page-99kk-con__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
    width: 30px;
    text-align: center;
    pointer-events: none; /* Crucial for click event on parent */
    transition: transform 0.3s ease;
}

.page-99kk-con__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    text-align: left; /* Ensure text alignment */
}

.page-99kk-con__faq-answer p {
    padding-bottom: 20px; /* Bottom padding for content */
    margin: 0;
    color: #ccc;
    font-size: 1em;
}

/* Active state for FAQ item */
.page-99kk-con__faq-item.active .page-99kk-con__faq-answer {
    max-height: 2000px !important; /* Use !important as required */
    padding: 20px 25px !important; /* Use !important as required */
    opacity: 1;
}

.page-99kk-con__faq-item.active .page-99kk-con__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or use a '-' symbol */
}

/* Floating Buttons */
.page-99kk-con__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-99kk-con__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
    font-size: 1em;
}

.page-99kk-con__floating-button--register {
    background-color: #ffcc00; /* Gold/yellow */
}

.page-99kk-con__floating-button--register:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

.page-99kk-con__floating-button--login {
    background-color: #4CAF50; /* Green */
    color: #fff;
}

.page-99kk-con__floating-button--login:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-99kk-con__hero-section {
        min-height: auto;
        padding-bottom: 40px;
    }

    .page-99kk-con__main-title {
        font-size: 2em;
    }

    .page-99kk-con__hero-description {
        font-size: 1em;
    }

    .page-99kk-con__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-99kk-con__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-99kk-con__section-title {
        font-size: 1.8em;
    }

    .page-99kk-con__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-99kk-con__features-grid,
    .page-99kk-con__promo-grid,
    .page-99kk-con__why-choose-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* List item responsiveness as required */
    .page-99kk-con__features-grid > div,
    .page-99kk-con__promo-grid > div,
    .page-99kk-con__why-choose-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for mobile */
    }

    .page-99kk-con__feature-text,
    .page-99kk-con__promo-description,
    .page-99kk-con__why-choose-text,
    .page-99kk-con__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-99kk-con__why-choose-icon {
        width: 150px;
        height: 150px;
    }

    .page-99kk-con__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-99kk-con__faq-answer {
        padding: 0 20px;
    }

    .page-99kk-con__faq-item.active .page-99kk-con__faq-answer {
        padding: 15px 20px !important;
    }

    .page-99kk-con__floating-buttons {
        right: 10px;
        bottom: 10px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 20px);
        justify-content: space-around;
    }

    .page-99kk-con__floating-button {
        width: 48%; /* Adjust width for two buttons */
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .page-99kk-con__main-title {
        font-size: 1.8em;
    }

    .page-99kk-con__section-title {
        font-size: 1.6em;
    }

    .page-99kk-con__floating-buttons {
        bottom: 10px;
        right: 5px;
        left: 5px;
        width: auto;
    }
    .page-99kk-con__floating-button {
        width: 45%;
        height: 45px;
        font-size: 0.9em;
    }
}
  