/* === Base & Global Styles === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }

        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 5px 0px 5px 0px;
        }

        

/* === Header & Navigation === */
/* Header */
        header {
            background: #151b21;
            color: white;
            padding: 15px 0px 15px 0px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.logo-image {
    width: 80px;
    height: 38px;
    margin-right: 10px;
    border-radius: 8px;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

 /* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}



        

/* === Unique Sections from File1 === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 5px 0px 5px 0px;
        }

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 1rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown-content a {
    color: #333;
    padding: 0.8rem 1.5rem;
    display: block;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    transform: none;
}

.services-dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #151b21;
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 2.5rem;
}

/* Mobile Services Dropdown */
.mobile-services-dropdown .mobile-dropdown-content {
    display: none;
    background: rgba(255,255,255,0.05);
    padding-left: 2rem;
}

.mobile-services-dropdown.open .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    color: rgba(255,255,255,0.8);
}

.services-toggle {
    position: relative;
}

.services-toggle::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-services-dropdown.open .services-toggle::after {
    transform: rotate(45deg);
}

/* Mobile Menu Active States */
.mobile-menu.active {
    display: block;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        width: 70px;
        height: 33px;
        margin-right: 8px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    header {
        padding: 12px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Adjust dropdown for smaller screens */
    .dropdown-content {
        min-width: 250px;
        left: -50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 60px;
        height: 28px;
        margin-right: 6px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* Desktop-first approach for larger screens */
@media (min-width: 1200px) {
    .logo-image {
        width: 93px;
        height: 45px;
        margin-right: 12px;
    }

    .logo-text {
        font-size: 1.8rem;
    }
}


        /* Hero Section - Matching Index Colors */
        .service-hero {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .service-icon-large {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .breadcrumb {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            opacity: 0.7;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .service-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .service-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(238,90,36,0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(238,90,36,0.4);
        }

        /* Modal Styles - Matching Index Page */






        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }


        .form-container {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Content Sections */
        .content-section {
            padding: 20px 0;
        }

        .content-section:nth-child(even) {
            background: #f8f9fa;
        }




        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .content-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .content-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.7;
        }

        .highlight-box {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
        }

        .highlight-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* Risk Types - Updated Colors */
        .risk-types {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 20px 0;
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .risk-type {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }

        .risk-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .risk-type h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .risk-type p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Assessment Process */
        .assessment-process {
            padding: 20px 0;
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #010206, #3b58b0);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        /* Frameworks Section */
        .frameworks {
            background: #f8f9fa;
            padding: 20px 0;
        }

        .frameworks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .framework-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 4px solid #243376;
            transition: all 0.3s ease;
        }

        .framework-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .framework-logo {
            height: 60px;
            border-radius: 10px;
            background: linear-gradient(45deg, #010206, #3b58b0);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .framework-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .framework-item p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Components Section */
        .components {
            padding: 20px 0;
            background: white;
        }

        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .component-item {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 15px;
            border-top: 4px solid #243376;
            transition: all 0.3s ease;
        }

        .component-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .component-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, #010206, #3b58b0);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .component-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .component-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Deliverables Section */
        .deliverables {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 20px 0;
        }

        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .deliverable-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }

        .deliverable-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .deliverable-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .deliverable-item p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Benefits Section */
        .benefits {
            padding: 20px 0;
            background: #f8f9fa;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            color: #243376;
        }

        .benefit-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .benefit-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Risk Matrix Section */
        .risk-matrix {
            padding: 20px 0;
            background: #f8f9fa;
        }

        .matrix-container {
            background: #f8f9fa;
            padding: 0px 0px 2rem 0px;
            border-radius: 20px;
            margin-top: 3rem;
            text-align: center;
        }

        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .matrix-cell {
            padding: 1.5rem;
            border-radius: 10px;
            color: white;
            font-weight: bold;
            text-align: center;
        }

        .critical { background: #e74c3c; }
        .high { background: #f39c12; }
        .medium { background: #f1c40f; color: #333; }
        .low { background: #27ae60; }

        /* CTA Section */
        .cta-section {
            background: #151b21;
            color: white;
            padding: 20px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer - Matching Index Page */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .types-grid,
            .process-grid,
            .frameworks-grid,
            .components-grid,
            .deliverables-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .matrix-grid {
                grid-template-columns: repeat(2, 1fr);
            }




        }

        /* Animations */
            to {
                opacity: 1;
            }
        }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Scroll animations */


/* === Unique Sections from File2 === */



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 5px 0px 5px 0px;
        }

        /* Header */


        /* Logo Styles */







        /* Services Dropdown */
        .services-dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 10px;
            padding: 1rem 0;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: #333;
            padding: 0.8rem 1.5rem;
            display: block;
            border-radius: 0;
            font-size: 0.9rem;
        }

        .dropdown-content a:hover {
            background: #f8f9fa;
            transform: none;
        }

        .services-dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(238,90,36,0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(238,90,36,0.4);
        }

        /* Modal Styles */






        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }


        .form-container {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Custom form styles for fallback */
        .custom-form {
            padding: 2rem;
            display: none;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e8ff;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #243376;
            box-shadow: 0 0 0 3px rgba(36, 51, 118, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(45deg, #243376, #764ba2);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(36, 51, 118, 0.3);
        }

        /* About Section */
        .about {
            padding: 20px 0;
            background: #f8f9fa;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #243376;
        }

        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 20px 0;
            background: white;
        }




        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #243376, #764ba2);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            background: linear-gradient(45deg, #010206, #3b58b0);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        .learn-more {
            display: inline-block;
            margin-top: 1rem;
            color: #243376;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            color: #764ba2;
            transform: translateX(5px);
        }

        /* Approach Section */
        .approach {
            padding: 20px 0;
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            text-align: center;
        }

        .approach h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }

        .approach p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .approach-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 20px 0;
            background: #151b21;
            color: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 10px 10px 10px;
            border-radius: 15px;
        }

        .contact-item h3 {
            margin-bottom: 1rem;
            color: #dbdfe3;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
          }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }




        }

        /* Animations */
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

            to {
                opacity: 1;
            }
        }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */





        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 5px 0px 5px 0px;
        }

        /* Header */


        /* Logo Styles */







        /* Services Dropdown */
        .services-dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 10px;
            padding: 1rem 0;
            margin-top: 0.5rem;
        }

        .dropdown-content a {
            color: #333;
            padding: 0.8rem 1.5rem;
            display: block;
            border-radius: 0;
            font-size: 0.9rem;
        }

        .dropdown-content a:hover {
            background: #f8f9fa;
            transform: none;
        }

        .services-dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(238,90,36,0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(238,90,36,0.4);
        }

        /* Modal Styles */






        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }


        .form-container {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Custom form styles for fallback */
        .custom-form {
            padding: 2rem;
            display: none;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e8ff;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #243376;
            box-shadow: 0 0 0 3px rgba(36, 51, 118, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(45deg, #243376, #764ba2);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(36, 51, 118, 0.3);
        }

        /* About Section */
        .about {
            padding: 20px 0;
            background: #f8f9fa;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #243376;
        }

        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 20px 0;
            background: white;
        }




        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #243376, #764ba2);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            background: linear-gradient(45deg, #010206, #3b58b0);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        .learn-more {
            display: inline-block;
            margin-top: 1rem;
            color: #243376;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .learn-more:hover {
            color: #764ba2;
            transform: translateX(5px);
        }

        /* Approach Section */
        .approach {
            padding: 20px 0;
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            text-align: center;
        }

        .approach h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }

        .approach p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .approach-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 20px 0;
            background: #151b21;
            color: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 10px 10px 10px;
            border-radius: 15px;
        }

        .contact-item h3 {
            margin-bottom: 1rem;
            color: #dbdfe3;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
          }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }




        }

        /* Animations */
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

            to {
                opacity: 1;
            }
        }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */


/* === Modal Styles === */
/* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        .modal-header {
            background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .modal-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 0;
            height: 600px;
        }

        .form-container {
            width: 100%;
            height: 100%;
            border: none;
        }

        

/* === Animations === */
/* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .scroll-animate.in-view {
            opacity: 1;
            transform: translateY(0);
        }

/* === InfoSec Audits Page Specific Styles === */

/* Audit Types Section - Similar to risk-types but for audits */
.audit-types {
    background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
    color: white;
    padding: 20px 0;
}

.audit-type {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.audit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.audit-type h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.audit-type p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Audit Areas Section */
.audit-areas {
    padding: 20px 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid #243376;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.area-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.area-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.area-item p {
    color: #666;
    line-height: 1.6;
}

/* Audit Process Section - Similar to assessment-process */
.audit-process {
    padding: 20px 0;
    background: white;
}

/* Audit Areas List Styles */
.area-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.area-item li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.95rem;
}

.area-item li:before {
    content: "✓";
    color: #243376;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Methodology Section - Alternative to assessment-process */
.methodology {
    background: #f8f9fa;
    padding: 20px 0;
}

.methodology-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.phase h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.phase p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for InfoSec Specific Elements */
@media (max-width: 768px) {
    .areas-grid,
    .methodology-phases {
        grid-template-columns: 1fr;
    }
    
    .area-item {
        padding: 2rem;
    }
    
    .area-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* === HIPAA Compliance Page Specific Styles === */

/* HIPAA Rules Section - Similar to risk-types */
.hipaa-rules {
    background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
    color: white;
    padding: 20px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hipaa-rule {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hipaa-rule h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hipaa-rule p {
    line-height: 1.6;
    opacity: 0.9;
}

/* HIPAA Safeguards Section */
.hipaa-safeguards {
    background: #f8f9fa;
    padding: 20px 0;
}

.safeguards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.safeguard-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #243376;
    text-align: center;
    transition: all 0.3s ease;
}

.safeguard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.safeguard-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
}

.safeguard-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.safeguard-item p {
    color: #666;
    line-height: 1.6;
}

/* Covered Entities Section */
.covered-entities {
    padding: 20px 0;
    background: white;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.entity-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.entity-item:hover {
    border-color: #243376;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.entity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #243376;
}

.entity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.entity-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* HIPAA Process Section - Uses existing .process-grid from Risk Assessment */
.hipaa-process {
    padding: 20px 0;
    background: white;
}

/* HIPAA Penalties Section */
.hipaa-penalties {
    padding: 20px 0;
    background: #f8f9fa;
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.penalty-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
}

.penalty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.penalty-tier {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.penalty-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.penalty-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.penalty-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design for HIPAA Specific Elements */
@media (max-width: 768px) {
    .rules-grid,
    .safeguards-grid,
    .entities-grid,
    .penalties-grid {
        grid-template-columns: 1fr;
    }
    
    .safeguard-item,
    .entity-item,
    .penalty-item {
        padding: 2rem;
    }
    
    .safeguard-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .penalty-tier {
        font-size: 1.5rem;
    }
    
    .penalty-amount {
        font-size: 1.2rem;
    }
}

/* === GDPR Compliance Page Specific Styles === */

/* GDPR Principles Section - Similar to risk-types */
.gdpr-principles {
    background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
    color: white;
    padding: 20px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gdpr-principle {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.gdpr-principle h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.gdpr-principle p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* GDPR Rights Section */
.gdpr-rights {
    background: #f8f9fa;
    padding: 20px 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rights-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #243376;
    text-align: center;
    transition: all 0.3s ease;
}

.rights-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.rights-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-size: 1rem;
}

.rights-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.rights-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* GDPR Implementation Section - Uses existing .process-grid */
.gdpr-implementation {
    padding: 20px 0;
    background: white;
}

/* GDPR Penalties Section */
.gdpr-penalties {
    background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
    color: white;
    padding: 20px 0px 40px 0px;
    text-align: center;
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.penalty-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.penalty-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.penalty-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
}

.penalty-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design for GDPR Specific Elements */
@media (max-width: 768px) {
    .principles-grid,
    .rights-grid,
    .penalties-grid {
        grid-template-columns: 1fr;
    }
    
    .gdpr-principle,
    .rights-item,
    .penalty-item {
        padding: 2rem 1.5rem;
    }
    
    .rights-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .penalty-number {
        font-size: 2rem;
    }
    
    .principle-icon {
        font-size: 2rem;
    }
}

/* === SOC/SSAE Assessments Page Specific Styles === */

/* SOC Number Badge - Used in SOC Types Section */
.soc-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* SOC Features List - Used in SOC Types Section */
.soc-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.soc-features li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

.soc-features li:before {
    content: "✓";
    color: #243376;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* SOC Criteria Section */
.soc-criteria {
    background: #f8f9fa;
    padding: 20px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #243376;
    text-align: center;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.criteria-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #243376;
}

.criteria-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.criteria-item p {
    color: #666;
    line-height: 1.6;
}

/* SOC Process Section - Uses existing .process-grid */
.soc-process {
    padding: 20px 0;
}

/* SOC Industries Section */
.soc-industries {
    padding: 20px 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-item:hover {
    border-color: #243376;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: #243376;
}

.industry-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Responsive Design for SOC Specific Elements */
@media (max-width: 768px) {
    .criteria-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-item,
    .industry-item {
        padding: 2rem 1.5rem;
    }
    
    .soc-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .criteria-icon {
        font-size: 2rem;
    }
    
    .industry-icon {
        font-size: 1.8rem;
    }
}

/* === Security Testing Page Specific Styles === */

/* Testing Icon - Special styling for security testing services */
.testing-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    transition: all 0.3s ease;
}

.component-item:hover .testing-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(1, 2, 6, 0.3);
}

/* Testing Methodology Section - Uses existing .process-grid */
.testing-methodology {
    padding: 20px 0;
}

/* Testing Tools Section */
.testing-tools {
    background: #f8f9fa;
    padding: 20px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #243376;
    transition: all 0.3s ease;
}

.tool-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tool-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tool-list li:last-child {
    border-bottom: none;
}

.tool-list li:before {
    content: "✓";
    color: #243376;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tool-list li:hover {
    color: #243376;
    padding-left: 0.5rem;
}

/* Responsive Design for Security Testing Specific Elements */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-category {
        padding: 2rem 1.5rem;
    }
    
    .testing-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}


/* === ISO 27001 Certification Page Specific Styles === */

/* ISO Requirements Section */
.iso-requirements {
    background: #f8f9fa;
    padding: 20px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #243376;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.requirement-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #010206, #3b58b0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.requirement-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.requirement-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ISO Features Section */
.iso-features {
    background: linear-gradient(135deg, #0b0d13 0%, #152753 100%);
    color: white;
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.iso-feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.iso-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.iso-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.iso-feature p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Responsive Design for ISO 27001 Specific Elements */
@media (max-width: 768px) {
    .requirements-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-item,
    .iso-feature {
        padding: 2rem 1.5rem;
    }
    
    .requirement-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

/* === vCISO Advantages Section === */
.vciso-advantages {
    padding: 20px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #243376;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #243376;
}

.advantage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for vCISO Advantages */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        font-size: 2rem;
    }
}


/* === Enhanced Map Embedding Styles === */

/* Contact Section Enhancements */
.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

/* Map Container Styling */
.map-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

/* Responsive Map Iframe */
.map-iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.map-iframe:hover {
    filter: grayscale(0%) contrast(1.2);
}

/* Contact Info Grid Enhancement */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Contact Item Headers */
.contact-item h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Contact Item Text */
.contact-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Enhanced Contact Links */
.contact-item a {
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ee5a24;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .map-iframe {
        height: 250px;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .map-iframe {
        height: 200px;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .map-container {
        margin-top: 1rem;
    }
}

/* Large Screen Optimization */
@media (min-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-iframe {
        height: 350px;
    }
}

        .industries-list {
            columns: 2;
            column-gap: 2rem;
            margin-top: 1rem;
        }

        .industry-list-item {
            display: flex;
            align-items: center;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            break-inside: avoid;
            transition: all 0.3s ease;
        }

        .industry-list-item:before {
            color: #ff6b6b;
            font-weight: bold;
            margin-right: 0.8rem;
            font-size: 0.8rem;
        }

        .industry-list-item:hover {
            color: #ff6b6b;
            transform: translateX(5px);
        }
