/* style/download-center-security-info.css */
.page-download-center-security-info {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-download-center-security-info__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-download-center-security-info__hero-content {
    max-width: 800px;
}

.page-download-center-security-info__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-security-info__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-download-center-security-info__hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.page-download-center-security-info__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-download-center-security-info__section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-download-center-security-info__section--alt-bg {
    background-color: #fff;
}

.page-download-center-security-info__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-download-center-security-info__container h2 {
    text-align: center;
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-security-info__container h3 {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-download-center-security-info__container p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.page-download-center-security-info__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-security-info__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-security-info__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-security-info__feature-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center-security-info__feature-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-top: 0;
}

.page-download-center-security-info__feature-item p {
    font-size: 1em;
    color: #666;
}

.page-download-center-security-info__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-security-info__content-block--reverse {
    flex-direction: row-reverse;
}

.page-download-center-security-info__content-block img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-download-center-security-info__content-block > div {
    flex: 1;
    min-width: 300px;
}

.page-download-center-security-info__content-block h3 {
    margin-top: 0;
}

.page-download-center-security-info__content-block ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #555;
}

.page-download-center-security-info__content-block ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-download-center-security-info__content-block ul li strong {
    color: #003366;
}

.page-download-center-security-info__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px;
    white-space: nowrap;
}

.page-download-center-security-info__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-download-center-security-info__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-security-info__btn--secondary {
    background-color: #003366;
    color: #fff;
    border: 2px solid #003366;
}

.page-download-center-security-info__btn--secondary:hover {
    background-color: #002244;
    border-color: #002244;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-security-info__download-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-download-center-security-info__download-block img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.page-download-center-security-info__download-block > div {
    flex: 1;
    min-width: 300px;
}

.page-download-center-security-info__download-block h3 {
    color: #003366;
}

.page-download-center-security-info__download-block p a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.page-download-center-security-info__download-block p a:hover {
    text-decoration: underline;
}

.page-download-center-security-info__faq {
    background-color: #f9f9f9;
}

.page-download-center-security-info__accordion {
    margin-top: 40px;
}

.page-download-center-security-info__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-security-info__accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    color: #003366;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-security-info__accordion-header:hover {
    background-color: #e0e0e0;
}

.page-download-center-security-info__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-download-center-security-info__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center-security-info__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-security-info__accordion-content p {
    padding-bottom: 20px;
    margin-top: 10px;
    color: #666;
}

.page-download-center-security-info__cta-final {
    background-color: #003366;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-download-center-security-info__cta-final h2 {
    color: #FFCC00;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-download-center-security-info__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-download-center-security-info__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-security-info__hero {
        padding: 60px 20px;
    }
    .page-download-center-security-info__hero h1 {
        font-size: 2.8em;
    }
    .page-download-center-security-info__container h2 {
        font-size: 2em;
    }
    .page-download-center-security-info__content-block,
    .page-download-center-security-info__content-block--reverse {
        flex-direction: column;
    }
    .page-download-center-security-info__content-block img,
    .page-download-center-security-info__download-block img {
        max-width: 100%;
    }
    .page-download-center-security-info__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-download-center-security-info__hero h1 {
        font-size: 2.2em;
    }
    .page-download-center-security-info__hero p {
        font-size: 1em;
    }
    .page-download-center-security-info__container h2 {
        font-size: 1.8em;
    }
    .page-download-center-security-info__container h3 {
        font-size: 1.5em;
    }
    .page-download-center-security-info__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center-security-info__download-block {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-download-center-security-info__hero {
        padding: 40px 15px;
    }
    .page-download-center-security-info__hero h1 {
        font-size: 1.8em;
    }
    .page-download-center-security-info__section {
        padding: 40px 15px;
    }
    .page-download-center-security-info__container h2 {
        font-size: 1.5em;
    }
    .page-download-center-security-info__feature-item {
        padding: 20px;
    }
    .page-download-center-security-info__cta-final h2 {
        font-size: 2em;
    }
    .page-download-center-security-info__cta-buttons {
        flex-direction: column;
    }
}