/* style/index-security-guarantee.css */
.page-index-security-guarantee {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #1A1D2E; /* Slightly lighter than main color for contrast, still dark */
}

.page-index-security-guarantee__hero {
    background: linear-gradient(135deg, #2A2E43 0%, #1A1D2E 100%);
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-index-security-guarantee__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-index-security-guarantee__title {
    font-size: 3.2em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-guarantee__subtitle {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 40px;
}

.page-index-security-guarantee__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-index-security-guarantee__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-index-security-guarantee__section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2A2E43; /* Main color for section backgrounds */
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-security-guarantee__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-index-security-guarantee__content-grid--reversed {
    flex-direction: row-reverse;
}

.page-index-security-guarantee__text-content {
    flex: 1;
}

.page-index-security-guarantee__text-content p {
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-index-security-guarantee__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Accent color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-index-security-guarantee__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-index-security-guarantee__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-index-security-guarantee__feature-image:hover {
    transform: translateY(-5px);
}

.page-index-security-guarantee__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA button */
    color: #2A2E43; /* Main color for text on accent button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-index-security-guarantee__cta-button:hover {
    background-color: #E6B800; /* Slightly darker accent on hover */
    transform: translateY(-3px);
}

.page-index-security-guarantee__cta {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #FFD700 0%, #E6B800 100%);
    color: #2A2E43; /* Main color for text on accent background */
    border-radius: 0;
    box-shadow: none;
}

.page-index-security-guarantee__cta .page-index-security-guarantee__section-title {
    color: #2A2E43;
}

.page-index-security-guarantee__cta .page-index-security-guarantee__section-title::after {
    background-color: #2A2E43;
}

.page-index-security-guarantee__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #2A2E43;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-security-guarantee__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-index-security-guarantee__cta-button--secondary {
    background-color: #2A2E43;
    color: #FFD700;
}

.page-index-security-guarantee__cta-button--secondary:hover {
    background-color: #1A1D2E;
    color: #FFD700;
}

.page-index-security-guarantee__cta-image {
    max-width: 600px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-security-guarantee__content-grid {
        flex-direction: column;
        text-align: center;
    }

    .page-index-security-guarantee__content-grid--reversed {
        flex-direction: column;
    }

    .page-index-security-guarantee__image-wrapper {
        margin-top: 30px;
    }

    .page-index-security-guarantee__hero {
        padding: 60px 3%;
    }

    .page-index-security-guarantee__title {
        font-size: 2.5em;
    }

    .page-index-security-guarantee__section {
        padding: 40px 3%;
    }

    .page-index-security-guarantee__section-title {
        font-size: 2em;
    }

    .page-index-security-guarantee__sub-section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__title {
        font-size: 2em;
    }

    .page-index-security-guarantee__subtitle {
        font-size: 1em;
    }

    .page-index-security-guarantee__section-title {
        font-size: 1.8em;
    }

    .page-index-security-guarantee__sub-section-title {
        font-size: 1.3em;
    }

    .page-index-security-guarantee__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-security-guarantee__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-security-guarantee__hero {
        padding: 40px 2%;
    }

    .page-index-security-guarantee__title {
        font-size: 1.8em;
    }

    .page-index-security-guarantee__subtitle {
        font-size: 0.9em;
    }

    .page-index-security-guarantee__section {
        padding: 30px 2%;
    }

    .page-index-security-guarantee__section-title {
        font-size: 1.5em;
    }

    .page-index-security-guarantee__sub-section-title {
        font-size: 1.2em;
    }
}