/* 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 20px;
}

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

.page-index-security-guarantee__hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #003f80 100%); /* Darker blue gradient for depth */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-security-guarantee__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_security_pattern,digital_grid]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-security-guarantee__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-index-security-guarantee__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

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

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

.page-index-security-guarantee__section-title {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 50px;
    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-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.page-index-security-guarantee__image--small {
    max-width: 300px;
    margin: 30px auto;
    display: block;
}

.page-index-security-guarantee__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #495057;
}

.page-index-security-guarantee__text-content p {
    margin-bottom: 20px;
}

.page-index-security-guarantee__text-content strong {
    color: #0056b3;
}

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

.page-index-security-guarantee__btn--primary {
    background-color: #ffd700; /* Gold */
    color: #003f80; /* Darker blue for contrast */
    border: 2px solid #ffd700;
}

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

.page-index-security-guarantee__btn--secondary {
    background-color: #0056b3; /* Deep Blue */
    color: #fff;
    border: 2px solid #0056b3;
}

.page-index-security-guarantee__btn--secondary:hover {
    background-color: #004085;
    transform: translateY(-3px);
}

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

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

.page-index-security-guarantee__section--cta {
    background-color: #0056b3;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-security-guarantee__section--cta .page-index-security-guarantee__section-title {
    color: #ffd700;
}

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

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

.page-index-security-guarantee__section--final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f1f1f1;
}

.page-index-security-guarantee__final-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

/* 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-block {
        flex-direction: column;
        text-align: center;
    }
    .page-index-security-guarantee__content-block--reverse {
        flex-direction: column;
    }
    .page-index-security-guarantee__image {
        max-width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-security-guarantee__hero-title {
        font-size: 2.2em;
    }
    .page-index-security-guarantee__hero-description,
    .page-index-security-guarantee__text-content p,
    .page-index-security-guarantee__cta-description,
    .page-index-security-guarantee__final-description {
        font-size: 1em;
    }
    .page-index-security-guarantee__section-title {
        font-size: 1.8em;
    }
    .page-index-security-guarantee__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-security-guarantee__image {
        max-width: 100%;
    }
}

@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__hero-section,
    .page-index-security-guarantee__section,
    .page-index-security-guarantee__section--cta,
    .page-index-security-guarantee__section--final-cta {
        padding: 40px 0;
    }
    .page-index-security-guarantee__container {
        padding: 0 15px;
    }
}