 :root {
            --primary-blue: #0a2647;
            --accent-blue: #144272;
            --dark-blue: #05192d;
            --light-bg: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --gradient-blue: linear-gradient(135deg, #0a2647 0%, #205295 100%);
        }

        

        /* Hero Section */
        .inkimpact-skilldevelopment-page-hero {
            background: var(--gradient-blue);
            color: var(--text-light);
            padding: 100px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .inkimpact-skilldevelopment-page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: inkimpact-skilldevelopment-page-float 8s ease-in-out infinite;
        }

        .inkimpact-skilldevelopment-page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: inkimpact-skilldevelopment-page-float 10s ease-in-out infinite reverse;
        }

        .inkimpact-skilldevelopment-page-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .inkimpact-skilldevelopment-page-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: inkimpact-skilldevelopment-page-fadeInDown 1s ease-out;
        }

        /* Main Content Section */
        .inkimpact-skilldevelopment-page-content {
            background: var(--light-bg);
            padding: 80px 20px;
        }

        .inkimpact-skilldevelopment-page-section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--primary-blue);
            margin-bottom: 30px;
            animation: inkimpact-skilldevelopment-page-fadeInUp 0.8s ease-out;
        }

        .inkimpact-skilldevelopment-page-description {
            font-size: clamp(1rem, 2vw, 1.15rem);
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 40px;
            animation: inkimpact-skilldevelopment-page-fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .inkimpact-skilldevelopment-page-description strong {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .inkimpact-skilldevelopment-page-key-features {
            margin-top: 50px;
        }

        .inkimpact-skilldevelopment-page-key-title {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .inkimpact-skilldevelopment-page-features-list {
            list-style: none;
            margin-bottom: 50px;
        }

        .inkimpact-skilldevelopment-page-feature-item {
            font-size: 1.05rem;
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
            line-height: 1.7;
            animation: inkimpact-skilldevelopment-page-slideInLeft 0.6s ease-out backwards;
        }

        .inkimpact-skilldevelopment-page-feature-item:nth-child(1) { animation-delay: 0.3s; }
        .inkimpact-skilldevelopment-page-feature-item:nth-child(2) { animation-delay: 0.4s; }
        .inkimpact-skilldevelopment-page-feature-item:nth-child(3) { animation-delay: 0.5s; }
        .inkimpact-skilldevelopment-page-feature-item:nth-child(4) { animation-delay: 0.6s; }

        .inkimpact-skilldevelopment-page-feature-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .inkimpact-skilldevelopment-page-feature-item strong {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .inkimpact-skilldevelopment-page-ecosystem-text {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .inkimpact-skilldevelopment-page-highlight {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Feature Points Section - Inspired by second image */
        .inkimpact-skilldevelopment-page-points {
            background: var(--light-bg);
            padding: 80px 20px;
        }

        .inkimpact-skilldevelopment-page-points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .inkimpact-skilldevelopment-page-point-card {
            background: var(--primary-blue);
            color: var(--text-light);
            border-radius: 50px;
            padding: 25px 35px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(10, 38, 71, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: inkimpact-skilldevelopment-page-fadeInUp 0.8s ease-out backwards;
            position: relative;
            overflow: hidden;
        }

        .inkimpact-skilldevelopment-page-point-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .inkimpact-skilldevelopment-page-point-card:hover::before {
            opacity: 1;
        }

        .inkimpact-skilldevelopment-page-point-card:nth-child(1) { animation-delay: 0.1s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(3) { animation-delay: 0.3s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(4) { animation-delay: 0.4s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(5) { animation-delay: 0.5s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(6) { animation-delay: 0.6s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(7) { animation-delay: 0.7s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(8) { animation-delay: 0.8s; }
        .inkimpact-skilldevelopment-page-point-card:nth-child(9) { animation-delay: 0.9s; }

        .inkimpact-skilldevelopment-page-point-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(10, 38, 71, 0.4);
        }

        .inkimpact-skilldevelopment-page-icon-wrapper {
            background: var(--text-light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .inkimpact-skilldevelopment-page-point-card:hover .inkimpact-skilldevelopment-page-icon-wrapper {
            transform: rotate(360deg) scale(1.1);
        }

        .inkimpact-skilldevelopment-page-icon-wrapper i {
            font-size: 26px;
            color: var(--primary-blue);
        }

        .inkimpact-skilldevelopment-page-point-text {
            font-size: 1.05rem;
            line-height: 1.5;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        /* Animations */
        @keyframes inkimpact-skilldevelopment-page-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes inkimpact-skilldevelopment-page-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes inkimpact-skilldevelopment-page-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes inkimpact-skilldevelopment-page-float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            50% {
                transform: translateY(-20px) translateX(20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .inkimpact-skilldevelopment-page-hero {
                padding: 80px 20px 50px;
            }

            .inkimpact-skilldevelopment-page-content,
            .inkimpact-skilldevelopment-page-points {
                padding: 60px 20px;
            }

            .inkimpact-skilldevelopment-page-points-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .inkimpact-skilldevelopment-page-point-card {
                padding: 20px 25px;
                border-radius: 40px;
            }

            .inkimpact-skilldevelopment-page-icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .inkimpact-skilldevelopment-page-icon-wrapper i {
                font-size: 22px;
            }

            .inkimpact-skilldevelopment-page-point-text {
                font-size: 0.98rem;
            }
        }

        @media (max-width: 480px) {
            .inkimpact-skilldevelopment-page-feature-item {
                padding-left: 25px;
                font-size: 0.98rem;
            }
        } 
 
 
 
 
 
 /*=======================================================================================================================*/
 
 
 :root {
            --primary-red: #c41e3a;
            --primary-blue: #0f2c59;
            --dark-blue: #071b3d;
            --light-bg: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
        }

       

        /* Hero Section */
        .inkimpact-naps-page-hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 100px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .inkimpact-naps-page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
            animation: inkimpact-naps-page-pulse 6s ease-in-out infinite;
        }

        .inkimpact-naps-page-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .inkimpact-naps-page-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 15px;
            animation: inkimpact-naps-page-fadeInDown 1s ease-out;
        }

        .inkimpact-naps-page-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 300;
            opacity: 0.9;
            animation: inkimpact-naps-page-fadeInDown 1s ease-out 0.2s backwards;
        }

        /* Lifecycle Section */
        .inkimpact-naps-page-lifecycle {
            background: var(--light-bg);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .inkimpact-naps-page-section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--text-dark);
            margin-bottom: 60px;
            font-weight: 400;
        }

        .inkimpact-naps-page-lifecycle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .inkimpact-naps-page-lifecycle-item {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-lifecycle-item:nth-child(1) { animation-delay: 0.1s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(3) { animation-delay: 0.3s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(4) { animation-delay: 0.4s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(5) { animation-delay: 0.5s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(6) { animation-delay: 0.6s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(7) { animation-delay: 0.7s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(8) { animation-delay: 0.8s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(9) { animation-delay: 0.9s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(10) { animation-delay: 1s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(11) { animation-delay: 1.1s; }
        .inkimpact-naps-page-lifecycle-item:nth-child(12) { animation-delay: 1.2s; }

        .inkimpact-naps-page-step-badge {
            background: var(--text-light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .inkimpact-naps-page-step-content {
            flex: 1;
            background: var(--text-light);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .inkimpact-naps-page-step-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: var(--primary-red);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .inkimpact-naps-page-lifecycle-item:nth-child(even) .inkimpact-naps-page-step-content::before {
            background: var(--primary-blue);
        }

        .inkimpact-naps-page-step-content:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.12);
        }

        .inkimpact-naps-page-step-content:hover::before {
            transform: scaleY(1);
        }

        .inkimpact-naps-page-step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .inkimpact-naps-page-step-description {
            font-size: 0.95rem;
            color: #666;
            font-weight: 400;
        }

        .inkimpact-naps-page-placement-note {
            text-align: center;
            margin-top: 50px;
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
            padding: 20px;
            background: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        /* Training Section */
        .inkimpact-naps-page-training {
            background: var(--text-light);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-training-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .inkimpact-naps-page-training-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .inkimpact-naps-page-training-text h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-blue);
            margin-bottom: 30px;
        }

        .inkimpact-naps-page-training-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .inkimpact-naps-page-training-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .inkimpact-naps-page-training-img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-training-img-wrapper:nth-child(1) {
            grid-column: 1 / 2;
            border: 5px solid var(--primary-blue);
            animation-delay: 0.2s;
        }

        .inkimpact-naps-page-training-img-wrapper:nth-child(2) {
            grid-column: 2 / 3;
            border: 5px solid var(--primary-red);
            animation-delay: 0.3s;
        }

        .inkimpact-naps-page-training-img-wrapper:nth-child(3) {
            grid-column: 1 / 3;
            border: 5px solid var(--primary-blue);
            animation-delay: 0.4s;
        }

        .inkimpact-naps-page-training-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .inkimpact-naps-page-training-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .inkimpact-naps-page-decorative-arrows {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .inkimpact-naps-page-arrow {
            width: 0;
            height: 0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-left: 30px solid var(--primary-red);
            animation: inkimpact-naps-page-slideRight 1.5s ease-in-out infinite;
        }

        .inkimpact-naps-page-arrow:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-naps-page-arrow:nth-child(3) { animation-delay: 0.4s; }
        .inkimpact-naps-page-arrow:nth-child(4) { animation-delay: 0.6s; }

        /* Feedback Forum Section */
        .inkimpact-naps-page-feedback {
            background: var(--light-bg);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-feedback-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .inkimpact-naps-page-feedback-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .inkimpact-naps-page-feedback-img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-feedback-img-wrapper:first-child {
            border: 5px solid var(--primary-red);
            animation-delay: 0.2s;
        }

        .inkimpact-naps-page-feedback-img-wrapper:last-child {
            border: 5px solid var(--primary-blue);
            animation-delay: 0.3s;
        }

        .inkimpact-naps-page-feedback-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .inkimpact-naps-page-feedback-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .inkimpact-naps-page-feedback-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .inkimpact-naps-page-feedback-text h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-blue);
            margin-bottom: 40px;
        }

        .inkimpact-naps-page-forum-info {
            background: var(--primary-blue);
            color: var(--text-light);
            padding: 40px;
            border-radius: 50%;
            width: 320px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 15px 40px rgba(15, 44, 89, 0.3);
        }

        .inkimpact-naps-page-forum-info p {
            font-size: 1rem;
            line-height: 1.7;
        }

        .inkimpact-naps-page-benefits-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .inkimpact-naps-page-benefit-item {
            background: var(--primary-blue);
            color: var(--text-light);
            padding: 20px 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 8px 25px rgba(15, 44, 89, 0.2);
            transition: all 0.3s ease;
            animation: inkimpact-naps-page-slideInRight 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-benefit-item:nth-child(1) { animation-delay: 0.4s; }
        .inkimpact-naps-page-benefit-item:nth-child(2) { animation-delay: 0.5s; }
        .inkimpact-naps-page-benefit-item:nth-child(3) { animation-delay: 0.6s; }

        .inkimpact-naps-page-benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(15, 44, 89, 0.3);
        }

        .inkimpact-naps-page-benefit-icon {
            background: var(--text-light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .inkimpact-naps-page-benefit-icon i {
            font-size: 22px;
            color: var(--primary-red);
        }

        .inkimpact-naps-page-benefit-text {
            font-size: 1.05rem;
            font-weight: 600;
        }

        /* About NAPS Section */
        .inkimpact-naps-page-about {
            background: var(--text-light);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-about-content {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .inkimpact-naps-page-about-text ul {
            list-style: none;
            margin-top: 30px;
        }

        .inkimpact-naps-page-about-text li {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-about-text li:nth-child(1) { animation-delay: 0.1s; }
        .inkimpact-naps-page-about-text li:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-naps-page-about-text li:nth-child(3) { animation-delay: 0.3s; }
        .inkimpact-naps-page-about-text li:nth-child(4) { animation-delay: 0.4s; }
        .inkimpact-naps-page-about-text li:nth-child(5) { animation-delay: 0.5s; }

        .inkimpact-naps-page-about-text li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: transparent;
            font-size: 1.8rem;
            font-weight: bold;
            
        }

        .inkimpact-naps-page-about-text strong {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .inkimpact-naps-page-about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out;
        }

        .inkimpact-naps-page-about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Regulations Section */
        .inkimpact-naps-page-regulations {
            background: var(--light-bg);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-regulations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .inkimpact-naps-page-regulation-card {
            background: var(--primary-blue);
            color: var(--text-light);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(15, 44, 89, 0.2);
            transition: all 0.4s ease;
            animation: inkimpact-naps-page-fadeInUp 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-regulation-card:nth-child(1) { animation-delay: 0.1s; }
        .inkimpact-naps-page-regulation-card:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-naps-page-regulation-card:nth-child(3) { animation-delay: 0.3s; }

        .inkimpact-naps-page-regulation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(15, 44, 89, 0.3);
        }

        .inkimpact-naps-page-regulation-header {
            background: var(--primary-red);
            padding: 15px 25px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            display: inline-block;
        }

        .inkimpact-naps-page-regulation-card ul {
            list-style: none;
        }

        .inkimpact-naps-page-regulation-card li {
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .inkimpact-naps-page-regulation-card li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .inkimpact-naps-page-regulation-card strong {
            font-weight: 700;
        }

        /* Guidelines Section */
        .inkimpact-naps-page-guidelines {
            background: var(--text-light);
            padding: 80px 20px;
        }

        .inkimpact-naps-page-guidelines-list {
            list-style: none;
            max-width: 800px;
            margin: 40px auto 0;
        }

        .inkimpact-naps-page-guidelines-list li {
            font-size: 1.1rem;
            padding: 20px 30px;
            margin-bottom: 15px;
            background: var(--light-bg);
            border-left: 5px solid var(--primary-blue);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            animation: inkimpact-naps-page-slideInLeft 0.8s ease-out backwards;
        }

        .inkimpact-naps-page-guidelines-list li:nth-child(1) { animation-delay: 0.1s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(2) { animation-delay: 0.2s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(3) { animation-delay: 0.3s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(4) { animation-delay: 0.4s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(5) { animation-delay: 0.5s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(6) { animation-delay: 0.6s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(7) { animation-delay: 0.7s; }
        .inkimpact-naps-page-guidelines-list li:nth-child(8) { animation-delay: 0.8s; }

        .inkimpact-naps-page-guidelines-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            border-left-color: var(--primary-red);
        }

        /* Animations */
        @keyframes inkimpact-naps-page-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes inkimpact-naps-page-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes inkimpact-naps-page-slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes inkimpact-naps-page-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes inkimpact-naps-page-slideRight {
            0%, 100% {
                opacity: 0.4;
                transform: translateX(0);
            }
            50% {
                opacity: 1;
                transform: translateX(15px);
            }
        }

        @keyframes inkimpact-naps-page-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .inkimpact-naps-page-lifecycle-grid {
                grid-template-columns: 1fr;
            }

            .inkimpact-naps-page-training-content,
            .inkimpact-naps-page-feedback-content,
            .inkimpact-naps-page-about-content {
                grid-template-columns: 1fr;
            }

            .inkimpact-naps-page-forum-info {
                margin: 0 auto 40px;
            }
        }

        @media (max-width: 768px) {
            .inkimpact-naps-page-hero {
                padding: 80px 20px 50px;
            }

            .inkimpact-naps-page-lifecycle,
            .inkimpact-naps-page-training,
            .inkimpact-naps-page-feedback,
            .inkimpact-naps-page-about,
            .inkimpact-naps-page-regulations,
            .inkimpact-naps-page-guidelines {
                padding: 60px 20px;
            }

            .inkimpact-naps-page-training-images {
                grid-template-columns: 1fr;
            }

            .inkimpact-naps-page-training-img-wrapper:nth-child(1),
            .inkimpact-naps-page-training-img-wrapper:nth-child(3) {
                grid-column: 1 / 2;
            }

            .inkimpact-naps-page-forum-info {
                width: 100%;
                height: auto;
                border-radius: 20px;
                padding: 30px;
            }

            .inkimpact-naps-page-regulations-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .inkimpact-naps-page-step-badge {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .inkimpact-naps-page-step-content {
                padding: 12px 20px;
            }

            .inkimpact-naps-page-benefit-item {
                padding: 15px 20px;
            }

            .inkimpact-naps-page-benefit-icon {
                width: 45px;
                height: 45px;
            }
        }
        
        
        
        /*==========================*/
         :root {
      --ink-dark: #0f1e5e;
      --ink-dark-hover: #162e8c;
      --ink-light: #ffffff;
      --ink-gray: #f8f9fc;
      --ink-text: #1e293b;
      --ink-text-light: #e2e8f0;
      --accent: #3b82f6;
    }

 

    .inkimpact-skilltrainingsection {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .inkimpact-skilltrainingsection h1,
    .inkimpact-skilltrainingsection h2,
    .inkimpact-skilltrainingsection h3 {
      font-weight: 700;
      color: inherit;
    }

    /* Hero */
    .inkimpact-hero {
      background: var(--ink-dark);
      color: var(--ink-text-light);
      padding: 90px 20px 70px;
      text-align: center;
    }

    .inkimpact-hero h1 {
      font-size: clamp(2.1rem, 6vw, 3.8rem);
      margin-bottom: 1rem;
      color: white;
    }

    .inkimpact-hero p.subtitle {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      max-width: 720px;
      margin: 0 auto;
      opacity: 0.92;
    }

    /* Content Blocks */
    .inkimpact-block {
      padding: 80px 20px;
    }

    .inkimpact-block.light {
      background: white;
    }

    .inkimpact-block.dark {
      background: var(--ink-dark);
      color: var(--ink-text-light);
    }

    .inkimpact-block.dark h2,
    .inkimpact-block.dark h3 {
      color: white;
    }

    .inkimpact-block h2 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .content-wrapper {
      max-width: 1100px;
      margin: 0 auto;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .card {
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 2.2rem 1.8rem;
      border: 1px solid rgba(255,255,255,0.12);
      transition: all 0.25s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .card.light {
      background: white;
      border: 1px solid #e2e8f0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      color: inherit;
    }

    .card p {
      opacity: 0.9;
      font-size: 1.05rem;
    }

    .icon-container {
      width: 70px;
      height: 70px;
      background: rgba(255,255,255,0.12);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.9rem;
      color: white;
    }

    .card.light .icon-container {
      background: #e0e7ff;
      color: var(--ink-dark);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .inkimpact-block {
        padding: 60px 15px;
      }
      .inkimpact-hero {
        padding: 70px 15px 50px;
      }
    }

    @media (max-width: 480px) {
      .grid-3 {
        gap: 1.8rem;
      }
      .card {
        padding: 1.8rem 1.4rem;
      }
    }

