/* style/security-guarantee-data-encryption.css */
.page-security-guarantee-data-encryption {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for readability on dark backgrounds */
    background-color: #1A202C;
}

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

.page-security-guarantee-data-encryption__hero {
    background: linear-gradient(135deg, #1A202C, #3A404C);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-security-guarantee-data-encryption__hero h1 {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-security-guarantee-data-encryption__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #e5dfd3;
}

.page-security-guarantee-data-encryption__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.page-security-guarantee-data-encryption__section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-security-guarantee-data-encryption__section:nth-of-type(even) {
    background-color: #28303C;
}

.page-security-guarantee-data-encryption__section h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-security-guarantee-data-encryption__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-security-guarantee-data-encryption__section h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-security-guarantee-data-encryption__section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e5dfd3;
}

.page-security-guarantee-data-encryption__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-security-guarantee-data-encryption__section ul li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #e5dfd3;
}

.page-security-guarantee-data-encryption__section ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-security-guarantee-data-encryption__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-security-guarantee-data-encryption__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-security-guarantee-data-encryption__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-security-guarantee-data-encryption__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-security-guarantee-data-encryption__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-security-guarantee-data-encryption__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-security-guarantee-data-encryption__btn--tertiary {
    background-color: #5f636b;
    color: #e5dfd3;
    border: 2px solid #5f636b;
}

.page-security-guarantee-data-encryption__btn--tertiary:hover {
    background-color: #767980;
    border-color: #767980;
}

.page-security-guarantee-data-encryption__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-security-guarantee-data-encryption__link-text:hover {
    text-decoration: underline;
}

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

.page-security-guarantee-data-encryption__section--cta {
    text-align: center;
    background-color: #1A202C;
    padding-bottom: 80px;
}

.page-security-guarantee-data-encryption__section--cta p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

    .page-security-guarantee-data-encryption__hero p,
    .page-security-guarantee-data-encryption__section p,
    .page-security-guarantee-data-encryption__section ul li {
        font-size: 1em;
    }

    .page-security-guarantee-data-encryption__section h2 {
        font-size: 2em;
    }

    .page-security-guarantee-data-encryption__section h3 {
        font-size: 1.5em;
    }

    .page-security-guarantee-data-encryption__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-security-guarantee-data-encryption__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-security-guarantee-data-encryption__hero h1 {
        font-size: 2em;
    }

    .page-security-guarantee-data-encryption__hero p {
        font-size: 0.9em;
    }

    .page-security-guarantee-data-encryption__section h2 {
        font-size: 1.8em;
    }

    .page-security-guarantee-data-encryption__section h3 {
        font-size: 1.3em;
    }

    .page-security-guarantee-data-encryption__btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
    }
}