/* style/index-security-guarantee.css */
.page-index-security-guarantee {
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A1931;
    line-height: 1.6;
}

.page-index-security-guarantee__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A1931 0%, #1A3050 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.page-index-security-guarantee__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.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 20px;
    background-color: #0A1931;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-security-guarantee__section--dark-bg {
    background-color: #071221;
}

.page-index-security-guarantee__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-index-security-guarantee__container--center {
    flex-direction: column;
    text-align: center;
}

.page-index-security-guarantee__content-block {
    flex: 1;
    min-width: 300px;
    color: #E0E0E0;
}

.page-index-security-guarantee__image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-security-guarantee__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__image--support {
    max-width: 600px;
    margin-top: 30px;
}

.page-index-security-guarantee__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: left;
}

.page-index-security-guarantee__container--center .page-index-security-guarantee__section-title {
    text-align: center;
}

.page-index-security-guarantee__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #CCCCCC;
}

.page-index-security-guarantee__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-security-guarantee__link:hover {
    color: #FFEB80;
    text-decoration: underline;
}

.page-index-security-guarantee__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-index-security-guarantee__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

.page-index-security-guarantee__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-2px);
}

.page-index-security-guarantee__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-security-guarantee__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

/* Alternating content/image layout */
.page-index-security-guarantee__section:nth-of-type(odd) .page-index-security-guarantee__container {
    flex-direction: row;
}

.page-index-security-guarantee__section:nth-of-type(even) .page-index-security-guarantee__container {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2.8em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 2em;
        text-align: center;
    }
    .page-index-security-guarantee__container {
        flex-direction: column !important;
        text-align: center;
    }
    .page-index-security-guarantee__content-block, .page-index-security-guarantee__image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-index-security-guarantee__paragraph {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__hero {
        padding: 60px 15px;
    }
    .page-index-security-guarantee__hero-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__hero-description {
        font-size: 1em;
    }
    .page-index-security-guarantee__section {
        padding: 40px 15px;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-index-security-guarantee__hero-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.5em;
    }
}