
    /* Premium Compliance & Security Page Styles */
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #f3f4f6;
        --security-blue: #1e40af;
        --compliance-green: #059669;
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        --gradient-security: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        --gradient-compliance: linear-gradient(135deg, #065f46 0%, #047857 100%);
        --premium-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--primary-black);
        overflow-x: hidden;
        background: var(--primary-white);
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* ===== Hero Section ===== */
    .security-hero {
        background: var(--gradient-security);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        color: white;
    }

    .security-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
            repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
        z-index: 1;
    }

    .security-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220,38,38,0.2);
        backdrop-filter: blur(10px);
        padding: 12px 28px;
        border-radius: 100px;
        margin-bottom: 30px;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .hero-badge i {
        color: var(--primary-red);
        font-size: 1.2rem;
    }

    .hero-badge span {
        color: white;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .security-hero h1 {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .security-hero h1 span {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .security-hero p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.8);
        line-height: 1.7;
        margin-bottom: 40px;
    }

    /* ===== Compliance Framework Section ===== */
    .framework-section {
        padding: 100px 0;
        background: white;
    }

    .framework-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .framework-card {
        background: var(--light-gray);
        border-radius: 24px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
    }

    .framework-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-red);
        box-shadow: 0 20px 40px rgba(220,38,38,0.1);
    }

    .framework-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(153,27,27,0.05));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .framework-icon i {
        font-size: 32px;
        color: var(--primary-red);
    }

    .framework-card h3 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .framework-card p {
        color: var(--medium-gray);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ===== Security Pillars Section ===== */
    .pillars-section {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--medium-gray);
        max-width: 700px;
        margin: 0 auto;
    }

    .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pillar-card {
        background: white;
        border-radius: 28px;
        padding: 40px 30px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #e5e7eb;
        position: relative;
        overflow: hidden;
    }

    .pillar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .pillar-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        border-color: rgba(220,38,38,0.2);
    }

    .pillar-card:hover::before {
        transform: scaleX(1);
    }

    .pillar-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(153,27,27,0.05));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .pillar-icon i {
        font-size: 32px;
        color: var(--primary-red);
    }

    .pillar-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .pillar-card p {
        color: var(--medium-gray);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .pillar-features {
        list-style: none;
    }

    .pillar-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        color: var(--medium-gray);
        font-size: 0.9rem;
        border-bottom: 1px dashed rgba(0,0,0,0.05);
    }

    .pillar-features li:last-child {
        border-bottom: none;
    }

    .pillar-features li i {
        color: var(--primary-red);
        font-size: 0.8rem;
    }

    /* ===== Compliance Standards Section ===== */
    .standards-section {
        padding: 100px 0;
        background: var(--gradient-security);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .standards-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 80% 20%, rgba(220,38,38,0.1) 0%, transparent 50%);
    }

    .standards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .standard-card {
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 35px;
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .standard-card:hover {
        transform: translateY(-10px);
        background: rgba(220,38,38,0.1);
        border-color: var(--primary-red);
    }

    .standard-icon {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .standard-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .standard-card p {
        color: rgba(255,255,255,0.8);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .standard-list {
        list-style: none;
    }

    .standard-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .standard-list li:last-child {
        border-bottom: none;
    }

    .standard-list li i {
        color: var(--primary-red);
    }

    /* ===== Threat Protection Section ===== */
    .threat-section {
        padding: 100px 0;
        background: white;
    }

    .threat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        align-items: center;
    }

    .threat-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--dark-gray);
    }

    .threat-content p {
        color: var(--medium-gray);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .threat-features {
        list-style: none;
    }

    .threat-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .threat-features li:last-child {
        border-bottom: none;
    }

    .threat-features i {
        color: var(--primary-red);
        font-size: 1.2rem;
        width: 30px;
    }

    .threat-features span {
        color: var(--dark-gray);
        font-weight: 500;
    }

    .threat-image {
        border-radius: 30px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
    }

    .threat-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .threat-image:hover img {
        transform: scale(1.05);
    }

    /* ===== Audit & Compliance Section ===== */
    .audit-section {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .audit-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .audit-card {
        background: white;
        border-radius: 24px;
        padding: 35px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
    }

    .audit-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-red);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .audit-icon {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .audit-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .audit-card p {
        color: var(--medium-gray);
        line-height: 1.6;
    }

    /* ===== CTA Section ===== */
    .cta-security {
        background: var(--gradient-primary);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-security::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    .cta-security h2 {
        font-size: 2.8rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }

    .cta-security p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: white;
        color: var(--primary-red);
        padding: 16px 45px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* ===== Animation ===== */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animation-delay-100 { transition-delay: 0.1s; }
    .animation-delay-200 { transition-delay: 0.2s; }
    .animation-delay-300 { transition-delay: 0.3s; }
    .animation-delay-400 { transition-delay: 0.4s; }
    .animation-delay-500 { transition-delay: 0.5s; }

    /* ===== Responsive ===== */
    @media screen and (max-width: 1200px) {
        .framework-grid,
        .pillars-grid,
        .standards-grid,
        .audit-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .threat-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media screen and (max-width: 1024px) {
        .security-hero h1 {
            font-size: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.4rem;
        }
    }

    @media screen and (max-width: 768px) {
        .container {
            padding: 0 20px;
        }
        
        .security-hero h1 {
            font-size: 2.5rem;
        }
        
        .framework-grid,
        .pillars-grid,
        .standards-grid,
        .audit-grid {
            grid-template-columns: 1fr;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .threat-content h2 {
            font-size: 2rem;
        }
        
        .cta-security h2 {
            font-size: 2rem;
        }
    }
