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

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

.page-index-security-guarantee__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1a3d6d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-index-security-guarantee__hero-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(15deg);
}

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

.page-index-security-guarantee__section--alt-bg {
    background-color: #f0f2f5;
}

.page-index-security-guarantee__section-title {
    font-size: 2.5em;
    color: #0A2342;
    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: #E0B400;
    border-radius: 2px;
}

.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;
    font-size: 1.1em;
    color: #333;
}

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

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

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

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

.page-index-security-guarantee__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 1.1em;
    text-align: center;
}

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

.page-index-security-guarantee__btn--primary:hover {
    background-color: #f5c700;
    border-color: #f5c700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

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

.page-index-security-guarantee__btn--secondary:hover {
    background-color: #1a3d6d;
    border-color: #1a3d6d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.4);
}

.page-index-security-guarantee__btn--large {
    padding: 15px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-index-security-guarantee__cta-section {
    background: #0A2342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-security-guarantee__cta-title {
    font-size: 3em;
    color: #E0B400;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #e0e0e0;
}

.page-index-security-guarantee__cta-image {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: auto;
    opacity: 0.08;
    z-index: 0;
    transform: rotate(-20deg);
}

/* 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;
    }
    .page-index-security-guarantee__content-grid {
        flex-direction: column;
    }
    .page-index-security-guarantee__content-grid--reverse {
        flex-direction: column;
    }
    .page-index-security-guarantee__text-content, .page-index-security-guarantee__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-index-security-guarantee__image {
        max-width: 80%;
        margin-top: 30px;
    }
    .page-index-security-guarantee__hero-image, .page-index-security-guarantee__cta-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__hero-description {
        font-size: 1em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__text-content {
        font-size: 1em;
    }
    .page-index-security-guarantee__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-index-security-guarantee__btn--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-index-security-guarantee__cta-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__cta-description {
        font-size: 1em;
    }
}

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