/* =========================================
   SECURITY PAGE STYLES
   ========================================= */

.security-hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 160, 38, 0.1) 0%, rgba(15, 59, 125, 0.1) 100%);
}

.security-hero h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 56px;
    font-weight: 800;
}

body.light .security-hero h1 {
    color: #333;
}

.security-hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 50px;
}

body.light .security-hero p {
    color: #666;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(11, 160, 38, 0.1);
    border: 1px solid rgba(11, 160, 38, 0.2);
    border-radius: 30px;
    color: #0ba026;
    font-weight: 600;
    font-size: 14px;
}

.badge i {
    font-size: 20px;
}

body.light .badge {
    background: rgba(11, 160, 38, 0.05);
    border-color: rgba(11, 160, 38, 0.15);
}

/* =========================================
   SECURITY OVERVIEW SECTION
   ========================================= */

.security-overview {
    padding: 100px 0;
}

.security-overview h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
}

body.light .security-overview h2 {
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 60px;
}

body.light .section-subtitle {
    color: #666;
}

.security-card {
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.15);
}

.security-icon {
    font-size: 48px;
    color: #0ba026;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(11, 160, 38, 0.1);
    border-radius: 50%;
}

.security-card h4 {
    color: #fff;
    font-size: 20px;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

body.light .security-card h4 {
    color: #333;
}

.security-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

body.light .security-card p {
    color: #666;
}

body.light .security-card {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.1);
}

body.light .security-card:hover {
    background: rgba(11, 160, 38, 0.08);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.1);
}

body.light .security-icon {
    background: rgba(11, 160, 38, 0.08);
}

/* =========================================
   CERTIFICATIONS SECTION
   ========================================= */

.security-certifications {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.security-certifications h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
}

body.light .security-certifications h2 {
    color: #333;
}

.cert-card {
    background: rgba(11, 160, 38, 0.08);
    border: 1px solid rgba(11, 160, 38, 0.15);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(11, 160, 38, 0.2);
}

.cert-icon {
    font-size: 56px;
    color: #0ba026;
    margin-bottom: 20px;
    display: inline-block;
}

.cert-card h4 {
    color: #fff;
    font-size: 22px;
    margin: 15px 0 10px 0;
    font-weight: 700;
}

body.light .cert-card h4 {
    color: #333;
}

.cert-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

body.light .cert-card p {
    color: #666;
}

body.light .cert-card {
    background: rgba(11, 160, 38, 0.03);
    border-color: rgba(11, 160, 38, 0.1);
}

body.light .cert-card:hover {
    background: rgba(11, 160, 38, 0.1);
    box-shadow: 0 10px 30px rgba(11, 160, 38, 0.1);
}

/* =========================================
   BEST PRACTICES SECTION
   ========================================= */

.security-best-practices {
    padding: 100px 0;
}

.security-best-practices h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
}

body.light .security-best-practices h2 {
    color: #333;
}

.practice-item {
    padding: 30px;
    background: rgba(11, 160, 38, 0.05);
    border-left: 4px solid #0ba026;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.practice-item:hover {
    background: rgba(11, 160, 38, 0.12);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(11, 160, 38, 0.15);
}

.practice-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #0ba026;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.practice-item h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

body.light .practice-item h4 {
    color: #333;
}

.practice-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

body.light .practice-item p {
    color: #666;
}

body.light .practice-item {
    background: rgba(11, 160, 38, 0.02);
    border-left-color: #0ba026;
}

body.light .practice-item:hover {
    background: rgba(11, 160, 38, 0.08);
}

/* =========================================
   INCIDENTS SECTION
   ========================================= */

.security-incidents {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.security-incidents h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
}

body.light .security-incidents h2 {
    color: #333;
}

.incident-box {
    background: rgba(11, 160, 38, 0.08);
    border: 1px solid rgba(11, 160, 38, 0.15);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.incident-box:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.15);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.2);
    transform: translateY(-5px);
}

.incident-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.incident-header i {
    font-size: 32px;
    color: #0ba026;
}

.incident-header h4 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

body.light .incident-header h4 {
    color: #333;
}

.incident-box p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

body.light .incident-box p {
    color: #666;
}

body.light .incident-box {
    background: rgba(11, 160, 38, 0.03);
    border-color: rgba(11, 160, 38, 0.1);
}

body.light .incident-box:hover {
    background: rgba(11, 160, 38, 0.1);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.1);
}

/* =========================================
   CTA SECTION
   ========================================= */

.security-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 160, 38, 0.1) 0%, rgba(15, 59, 125, 0.1) 100%);
    border-radius: 8px;
    margin: 80px 0;
}

.security-cta h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
}

body.light .security-cta h2 {
    color: #333;
}

.security-cta p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
}

body.light .security-cta p {
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary.btn-lg {
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
    border: none;
}

.btn-primary.btn-lg:hover {
    background: linear-gradient(90deg, #099820 0%, #0ba026 100%);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.3);
    transform: translateY(-2px);
}

.btn-outline.btn-lg {
    background-color: transparent;
    border: 2px solid #0ba026;
    color: #0ba026;
}

.btn-outline.btn-lg:hover {
    background-color: #0ba026;
    color: #fff;
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.3);
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

@media (max-width: 768px) {
    .security-hero {
        padding: 60px 0;
    }

    .security-hero h1 {
        font-size: 36px;
    }

    .security-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-badges {
        gap: 15px;
        flex-direction: column;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .security-overview {
        padding: 60px 0;
    }

    .security-overview h2,
    .security-certifications h2,
    .security-best-practices h2,
    .security-incidents h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .security-card,
    .cert-card {
        padding: 30px 20px;
    }

    .security-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 32px;
    }

    .security-certifications {
        padding: 60px 0;
    }

    .security-best-practices {
        padding: 60px 0;
    }

    .security-incidents {
        padding: 60px 0;
    }

    .incident-box {
        padding: 25px;
    }

    .incident-header {
        flex-direction: column;
        text-align: center;
    }

    .incident-header i {
        font-size: 28px;
    }

    .security-cta {
        padding: 60px 20px;
        margin: 60px 0;
    }

    .security-cta h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .security-hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .security-hero p {
        font-size: 14px;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 28px;
    }

    .security-card h4,
    .cert-card h4 {
        font-size: 18px;
    }

    .practice-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .practice-item h4 {
        font-size: 16px;
    }
}
