/* style/index-security-guarantee.css */
.page-index-security-guarantee {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #0d1a2f; /* A slightly lighter dark background than main color for contrast */
}

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

.page-index-security-guarantee-hero {
    background: linear-gradient(135deg, #1A2B4C, #0d1a2f); /* Dark blue to very dark blue */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

.page-index-security-guarantee-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-index-security-guarantee-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-index-security-guarantee-hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold */
    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;
}

.page-index-security-guarantee-hero-btn:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    color: #0d1a2f; /* Even darker blue text */
}

.page-index-security-guarantee-section {
    padding: 60px 0;
    background-color: #0d1a2f;
}

.page-index-security-guarantee-section:nth-of-type(odd) {
    background-color: #1A2B4C; /* Alternating background for sections */
}

.page-index-security-guarantee-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

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

.page-index-security-guarantee-section-description {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #B0B0B0;
}

.page-index-security-guarantee-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-index-security-guarantee-feature-item {
    background-color: #1A2B4C; /* Dark blue background for feature cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-security-guarantee-section:nth-of-type(odd) .page-index-security-guarantee-feature-item {
    background-color: #0d1a2f; /* Darker background for feature cards in odd sections */
}

.page-index-security-guarantee-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-security-guarantee-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-security-guarantee-feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-index-security-guarantee-feature-text {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-index-security-guarantee-cta {
    text-align: center;
    background-color: #0d1a2f; /* Dark background for CTA */
}

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

.page-index-security-guarantee-cta-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */    color: #1A2B4C; /* Dark blue text */
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
}

.page-index-security-guarantee-cta-btn:hover {
    background-color: #e5c100; /* Darker gold */
    color: #0d1a2f; /* Darker blue */
    transform: translateY(-3px);
}

.page-index-security-guarantee-cta-btn--secondary {
    background-color: #1A2B4C; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index-security-guarantee-cta-btn--secondary:hover {
    background-color: #0d1a2f; /* Even darker blue */
    color: #e5c100; /* Darker gold */
    border-color: #e5c100;
}

.page-index-security-guarantee-faq {
    background-color: #1A2B4C;
    padding-bottom: 80px;
}

.page-index-security-guarantee-faq-item {
    background-color: #0d1a2f;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-security-guarantee-faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-security-guarantee-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-security-guarantee-faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-index-security-guarantee-faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 10px;
}

.page-index-security-guarantee-faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-security-guarantee-hero-title {
        font-size: 2.5em;
    }

    .page-index-security-guarantee-hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-index-security-guarantee-feature-grid {
        grid-template-columns: 1fr;
    }

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

    .page-index-security-guarantee-cta-btn {
        width: 80%;
        max-width: 300px;
    }

    .page-index-security-guarantee-faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-security-guarantee-hero {
        padding: 60px 0;
    }

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

    .page-index-security-guarantee-hero-subtitle {
        font-size: 1em;
    }

    .page-index-security-guarantee-section {
        padding: 40px 0;
    }

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