/* style/index-security-guarantee.css */
.page-index-security-guarantee {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

.page-index-security-guarantee__hero-section {
    background-color: #0A244A;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-index-security-guarantee__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 74, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.page-index-security-guarantee__hero-section .page-index-security-guarantee__container {
    position: relative;
    z-index: 2;
}

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

.page-index-security-guarantee__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-security-guarantee__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-index-security-guarantee__section:last-of-type {
    border-bottom: none;
}

.page-index-security-guarantee__section--dark-bg {
    background-color: #0A244A;
    color: #fff;
}

.page-index-security-guarantee__section-title {
    font-size: 2.5em;
    color: #0A244A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-security-guarantee__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-security-guarantee__section-title--light {
    color: #FFD700;
}

.page-index-security-guarantee__section-title--light::after {
    background-color: #fff;
}

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

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

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

.page-index-security-guarantee__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-index-security-guarantee__section--dark-bg .page-index-security-guarantee__text-content p {
    color: #e0e0e0;
}

.page-index-security-guarantee__subsection-title {
    font-size: 1.8em;
    color: #0A244A;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-index-security-guarantee__section--dark-bg .page-index-security-guarantee__subsection-title {
    color: #FFD700;
    border-left-color: #fff;
}

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

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

.page-index-security-guarantee__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-index-security-guarantee__btn--primary {
    background-color: #FFD700;
    color: #0A244A;
}

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

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

.page-index-security-guarantee__btn--secondary:hover {
    background-color: #1a3e6c;
    color: #fff;
    transform: translateY(-2px);
}

.page-index-security-guarantee__btn--outline {
    background-color: transparent;
    color: #0A244A;
    border: 2px solid #0A244A;
}

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

.page-index-security-guarantee__inline-link {
    color: #0A244A;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-security-guarantee__inline-link:hover {
    color: #FFD700;
}

.page-index-security-guarantee__inline-link--light {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-security-guarantee__inline-link--light:hover {
    color: #fff;
}

.page-index-security-guarantee__text--light {
    color: #e0e0e0;
}

.page-index-security-guarantee__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-index-security-guarantee__feature-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-security-guarantee__feature-icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
    line-height: 1;
}

.page-index-security-guarantee__feature-text {
    margin: 0;
    color: #fff;
    font-size: 1.1em;
}

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

.page-index-security-guarantee__image--app-cta {
    margin-top: 40px;
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2.5em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 2em;
    }
    .page-index-security-guarantee__subsection-title {
        font-size: 1.5em;
    }
    .page-index-security-guarantee__content-grid {
        flex-direction: column;
    }
    .page-index-security-guarantee__content-grid--reverse {
        flex-direction: column;
    }
    .page-index-security-guarantee__image-wrapper {
        order: -1; /* Image appears above text on small screens for reverse grid */
    }
    .page-index-security-guarantee__feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2em;
    }
    .page-index-security-guarantee__hero-subtitle {
        font-size: 1em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__subsection-title {
        font-size: 1.3em;
    }
    .page-index-security-guarantee__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-security-guarantee__section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .page-index-security-guarantee__hero-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.5em;
    }
    .page-index-security-guarantee__subsection-title {
        font-size: 1.2em;
    }
    .page-index-security-guarantee__download-buttons {
        flex-direction: column;
    }
    .page-index-security-guarantee__btn {
        width: 100%;
        margin-bottom: 10px;
    }
}