.why-nexamedia {
        position: relative;
        padding: 4rem 2rem;
        background: #000000;
        overflow: hidden;
    }

    .why-nexamedia::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1200px;
        height: 1200px;
        background: radial-gradient(circle, rgba(30, 115, 190, 0.15), transparent 70%);
        filter: blur(120px);
        pointer-events: none;
    }

    .why-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        animation: fadeInUp 1s ease-out;
    }

    .section-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        position: relative;
    }

    .section-label::before,
    .section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #1E73BE, transparent);
    }

    .section-label::before {
        right: calc(100% + 15px);
    }

    .section-label::after {
        left: calc(100% + 15px);
        background: linear-gradient(90deg, transparent, #1E73BE);
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-description {
        font-size: 1.2rem;
        color: #B0B0B0;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Main Content Layout */
    .why-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        margin-top: 4rem;
    }

    /* Left Side - Reasons List */
    .why-reasons {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .reason-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInLeft 0.6s ease forwards;
    }

    .reason-item:nth-child(1) { animation-delay: 0.1s; }
    .reason-item:nth-child(2) { animation-delay: 0.2s; }
    .reason-item:nth-child(3) { animation-delay: 0.3s; }
    .reason-item:nth-child(4) { animation-delay: 0.4s; }
    .reason-item:nth-child(5) { animation-delay: 0.5s; }
    .reason-item:nth-child(6) { animation-delay: 0.6s; }

    .reason-number {
        min-width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.2), rgba(0, 194, 160, 0.2));
        border: 2px solid rgba(30, 115, 190, 0.3);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.3s ease;
    }

    .reason-item:hover .reason-number {
        transform: scale(1.1) rotate(-5deg);
        border-color: #1E73BE;
    }

    .reason-content {
        flex: 1;
    }

    .reason-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .reason-title i {
        font-size: 1.1rem;
        color: #1E73BE;
    }

    .reason-description {
        font-size: 0.95rem;
        color: #B0B0B0;
        line-height: 1.6;
    }

    /* Right Side - Stats & Visual */
    .why-visual {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .stats-wrapper {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 24px;
        padding: 3rem;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .stats-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1E73BE, #00C2A0);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: rgba(30, 115, 190, 0.05);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        background: rgba(30, 115, 190, 0.1);
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
        line-height: 1;
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #B0B0B0;
        font-weight: 500;
    }

    /* Highlight Box */
    .why-highlight {
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(0, 194, 160, 0.1));
        border: 1px solid rgba(30, 115, 190, 0.3);
        border-radius: 20px;
        padding: 2.5rem;
        text-align: center;
    }

    .highlight-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .highlight-text {
        font-size: 1.1rem;
        color: #E0E0E0;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .highlight-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        color: #FFFFFF;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .highlight-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.4);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .why-nexamedia {
            padding: 5rem 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-description {
            font-size: 1rem;
        }

        .why-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .section-label::before,
        .section-label::after {
            display: none;
        }

        .reason-item {
            animation: none;
            opacity: 1;
            transform: none;
        }
    }