.np-featured-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    gap: 60px;
    align-items: center;
}

.np-text-content {
    flex: 1;
    padding: 0 20px;
}

.np-image-wrapper {
    flex: 1;
    position: relative;
    min-width: 350px;
    max-width: 400px;
}

.np-featured-image {
    width: 100%;
}


.np-main-heading {
    font-size: 34px;
    color: #313669;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.25;
}

.np-product-description {
    color: #6a6f7d;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 17px;
    max-width: 480px;
}

.np-button-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.np-primary-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(95deg, #003A7A, #313669);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 58, 122, 0.3);
}

.np-secondary-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #003A7A !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #003A7A;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.np-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 58, 122, 0.4);
}

.np-secondary-btn:hover {
    background: #f8faff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 1000px) {
    .np-featured-container {
        flex-direction: column;
        padding: 60px 25px;
        gap: 45px;
    }
    
    .np-text-content {
        text-align: center;
        padding: 0;
    }
    
    .np-product-description {
        margin: 0 auto 30px;
    }
    
    .np-button-group {
        justify-content: center;
    }
    
    .np-image-wrapper {
        order: -1;

    }
}

@media (max-width: 600px) {
    .np-main-heading {
        font-size: 28px;
    }
    
    .np-button-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .np-primary-btn,
    .np-secondary-btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .np-main-heading {
        font-size: 26px;
    }
    
    .np-product-description {
        font-size: 16px;
    }
    
    .np-new-badge {
        font-size: 14px;
        padding: 6px 16px;
        top: 15px;
        right: 15px;
    }
}