/* style/resources-kl99-security-guarantee.css */

/* Base styles for the page content, ensuring contrast with body background #0a0a0a */
.page-resources-kl99-security-guarantee {
    color: #ffffff; /* Light text for dark background */
    background-color: #0a0a0a; /* Ensure consistency with body */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom of the main content */
}

/* Hero Section */
.page-resources-kl99-security-guarantee__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-resources-kl99-security-guarantee__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-kl99-security-guarantee__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-kl99-security-guarantee__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-resources-kl99-security-guarantee__hero-title {
    font-size: 3.2em;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-kl99-security-guarantee__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-resources-kl99-security-guarantee__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General button styles */
.page-resources-kl99-security-guarantee__btn-primary,
.page-resources-kl99-security-guarantee__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-kl99-security-guarantee__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-resources-kl99-security-guarantee__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-resources-kl99-security-guarantee__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-kl99-security-guarantee__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

/* Content Sections */
.page-resources-kl99-security-guarantee__content-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for content */
}

.page-resources-kl99-security-guarantee__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-kl99-security-guarantee__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-kl99-security-guarantee__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-resources-kl99-security-guarantee__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.page-resources-kl99-security-guarantee__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-resources-kl99-security-guarantee__feature-card {
    background-color: #0a0a0a; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(38, 169, 224, 0.3); /* Subtle border with brand color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-kl99-security-guarantee__feature-icon {
    width: 100%; /* Ensure images take full width of card */
    max-width: 400px; /* Limit max width for smaller images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-width: 200px; /* Enforce min-size for images */
    min-height: 200px;
}

.page-resources-kl99-security-guarantee__feature-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-kl99-security-guarantee__feature-text {
    font-size: 1em;
    color: #cccccc;
    text-align: left;
}

/* CTA Section */
.page-resources-kl99-security-guarantee__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #26A9E0; /* Brand color background */
    color: #FFFFFF;
}

.page-resources-kl99-security-guarantee__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-resources-kl99-security-guarantee__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-resources-kl99-security-guarantee__faq-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* Dark background */
}

.page-resources-kl99-security-guarantee__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-kl99-security-guarantee__faq-item {
    background-color: #1a1a1a; /* Slightly lighter dark background for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-resources-kl99-security-guarantee__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #0d0d0d; /* Even darker background for question header */
    transition: background-color 0.3s ease;
}

.page-resources-kl99-security-guarantee__faq-question:hover {
    background-color: #1a1a1a;
}

.page-resources-kl99-security-guarantee__faq-qtext {
    flex-grow: 1;
    color: #26A9E0; /* Brand color for question text */
}

.page-resources-kl99-security-guarantee__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFFFFF;
}

/* For details tag, hide default marker */
.page-resources-kl99-security-guarantee__faq-item summary {
    list-style: none;
}
.page-resources-kl99-security-guarantee__faq-item summary::-webkit-details-marker {
    display: none;
}


.page-resources-kl99-security-guarantee__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: #cccccc;
    background-color: #1a1a1a; /* Match card background */
}

.page-resources-kl99-security-guarantee__faq-answer p {
    margin: 0;
}

/* Contact CTA Section */
.page-resources-kl99-security-guarantee__contact-cta {
    padding: 80px 20px;
    text-align: center;
    background-color: #f0f0f0; /* Light background for contrast */
    color: #333333;
}

.page-resources-kl99-security-guarantee__contact-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #000000;
}

.page-resources-kl99-security-guarantee__contact-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-kl99-security-guarantee__hero-title {
        font-size: 2.8em;
    }
    .page-resources-kl99-security-guarantee__section-title {
        font-size: 2em;
    }
    .page-resources-kl99-security-guarantee__cta-title,
    .page-resources-kl99-security-guarantee__contact-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-kl99-security-guarantee {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-kl99-security-guarantee__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
    }

    .page-resources-kl99-security-guarantee__hero-title {
        font-size: 2em;
    }

    .page-resources-kl99-security-guarantee__hero-description {
        font-size: 1em;
    }

    .page-resources-kl99-security-guarantee__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-resources-kl99-security-guarantee__btn-primary,
    .page-resources-kl99-security-guarantee__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .page-resources-kl99-security-guarantee__container,
    .page-resources-kl99-security-guarantee__cta-section,
    .page-resources-kl99-security-guarantee__contact-cta {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-kl99-security-guarantee__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-kl99-security-guarantee__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-resources-kl99-security-guarantee__feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-resources-kl99-security-guarantee__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Enforce min-size for all images */
        min-height: 200px !important;
    }

    .page-resources-kl99-security-guarantee__feature-title {
        font-size: 1.5em;
    }

    .page-resources-kl99-security-guarantee__feature-text {
        font-size: 0.9em;
    }

    .page-resources-kl99-security-guarantee__cta-title,
    .page-resources-kl99-security-guarantee__contact-title {
        font-size: 2em;
    }

    .page-resources-kl99-security-guarantee__cta-description,
    .page-resources-kl99-security-guarantee__contact-description {
        font-size: 1em;
    }

    .page-resources-kl99-security-guarantee__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-kl99-security-guarantee__faq-answer {
        font-size: 1em;
        padding: 15px 20px;
    }
    
    /* Ensure all images are responsive in content area */
    .page-resources-kl99-security-guarantee img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min-size for all images */
        min-height: 200px !important;
    }
    
    /* Content area images specifically */
    .page-resources-kl99-security-guarantee__content-section img,
    .page-resources-kl99-security-guarantee__feature-card img {
      width: 100% !important; /* Override explicit widths for mobile */
      height: auto !important;
      max-width: 100% !important;
      min-width: 200px !important;
      min-height: 200px !important;
    }

    /* Video responsiveness (if any, though not in this specific HTML) */
    .page-resources-kl99-security-guarantee video,
    .page-resources-kl99-security-guarantee__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-kl99-security-guarantee__video-section,
    .page-resources-kl99-security-guarantee__video-container,
    .page-resources-kl99-security-guarantee__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }
    .page-resources-kl99-security-guarantee__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}